Exemplo n.º 1
0
 public BaseEntityService(TUnitOfWork unitOfWork, IBaseBLLMapper <TDALEntity, TBLLEntity> mapper,
                          TServiceRepository serviceRepository)
 {
     ServiceUnitOfWork = unitOfWork;
     ServiceRepository = serviceRepository;
     Mapper            = mapper;
 }
Exemplo n.º 2
0
 public BaseEntityService(TUnitOfWork uow, IBaseBLLMapper mapper)
 {
     Uow     = uow;
     _mapper = mapper;
     //_repo = Uow.BaseRepository<TDALEntity>();
 }
Exemplo n.º 3
0
 public BaseEntityService(TUnitOfWork unitOfWork, IBaseBLLMapper <TDALEntity, TBLLEntity> mapper, TServiceRepository serviceRepository)
     : base(unitOfWork, mapper, serviceRepository)
 {
 }