Пример #1
0
        public static vwCustomerSimpleViewRepository GetvwCustomerSimpleViewRepository()
        {
            var repository = new vwCustomerSimpleViewRepository();

            repository.UnitOfWork = GetUnitOfWork();
            return(repository);
        }
Пример #2
0
 public static vwCustomerSimpleViewRepository GetvwCustomerSimpleViewRepository(IUnitOfWork unitOfWork)
 {
     var repository = new vwCustomerSimpleViewRepository();
     repository.UnitOfWork = unitOfWork;
     return repository;
 }