14 lines
266 B
C#
14 lines
266 B
C#
using cuqmbr.TravelGuide.Application.Common.Interfaces.Persistence;
|
|
|
|
namespace cuqmbr.TravelGuide.Persistence;
|
|
|
|
public static class DbSeeder
|
|
{
|
|
public static void Seed(UnitOfWork unitOfWork)
|
|
{
|
|
// Do Seeding Here
|
|
|
|
unitOfWork.Dispose();
|
|
}
|
|
}
|