public DocumentService(IUnitOfWork uow) { unitOfWork = uow; mapper = new MapperService(); var dataTablePagingService = new DocumentPagingService(unitOfWork); dataTableService = new DataTableService <Document>(dataTablePagingService); }
public TicketService(IUnitOfWork uow) { this.uow = uow; mapper = new MapperService(); var dataTablePagingService = new TicketPagingService(uow); dataTableService = new DataTableService <Ticket>(dataTablePagingService); }
public TicketVerificationService(IUnitOfWork unitOfWork, ITicketService ticketService) { this.unitOfWork = unitOfWork; this.ticketService = ticketService; mapper = new MapperService(); var dataTablePagingService = new TicketVerificationPagingService(unitOfWork); dataTableService = new DataTableService <TicketVerification>(dataTablePagingService); }
public UserService(IUnitOfWork uow, IMailService mailService) { this.uow = uow; mapper = new MapperService(); this.mailService = mailService; var dataTablePagingService = new UserPagingService(uow); dataTableService = new DataTableService <User>(dataTablePagingService); }
public PriceListService(IUnitOfWork uow) { this.uow = uow; mapper = new MapperService(); }
public CarrierService(IUnitOfWork uow) { this.uow = uow; mapper = new MapperService(); carrierValidator = new CarrierValidator(); }
public PrivilegeService(IUnitOfWork uow) { this.uow = uow; mapper = new MapperService(); privilegeValidator = new PrivilegeValidator(); }
public StationService(IUnitOfWork uow) { this.uow = uow; mapper = new MapperService(); stationValidator = new StationValidator(); }
public TicketTypeService(IUnitOfWork unitOfWork) { this.unitOfWork = unitOfWork; mapper = new MapperService(); ticketTypeValidator = new TicketTypeValidator(); }
public PrivilegeService(IUnitOfWork uow) { this.uow = uow; mapper = new MapperService(); }
public RouteService(IUnitOfWork uow) { unitOfWork = uow; mapper = new MapperService(); }
public AreaService(IUnitOfWork unitOfWork) { this.unitOfWork = unitOfWork; mapper = new MapperService(); }
public TransportService(IUnitOfWork uow) { this.uow = uow; mapper = new MapperService(); }