Exemplo n.º 1
0
 public static MothersRepository GetMothersRepository(IUnitOfWork unitOfWork)
 {
     var repository = new MothersRepository();
     repository.UnitOfWork = unitOfWork;
     return repository;
 }
Exemplo n.º 2
0
 public static MothersRepository GetMothersRepository()
 {
     var repository = new MothersRepository();
     repository.UnitOfWork = GetUnitOfWork();
     return repository;
 }