public VouchersService( IAuthorizationDataService authData, IAuthorizationService authService, IMapper mapper, Dal.OlmaDbContext olmaDbContext, IServiceProvider serviceProvider, IRepository <Olma.Voucher> olmaVoucherRepo, IRepository <Olma.CustomerPartner> olmaCustomerPartnerRepo, IRepository <Olma.PartnerDirectory> olmaPartnerDirectoryRepo, IRepository <Olma.Partner> olmaPartnerRepo, INumberSequencesService numberSequencesService, IDocumentTypesService documentTypesService, IDocumentsService documentsService, IPostingRequestsService postingRequestsService, Reporting.IReportGeneratorService reportGeneratorService, ISynchronizationsService synchronizationsService) : base(authData, authService, mapper) { _olmaDbContext = olmaDbContext; _serviceProvider = serviceProvider; _olmaVoucherRepo = olmaVoucherRepo; _olmaCustomerPartnerRepo = olmaCustomerPartnerRepo; _olmaPartnerDirectoryRepo = olmaPartnerDirectoryRepo; _olmaPartnerRepo = olmaPartnerRepo; _numberSequencesService = numberSequencesService; _documentTypesService = documentTypesService; _documentsService = documentsService; _reportGeneratorService = reportGeneratorService; _synchronizationsService = synchronizationsService; _postingRequestsService = postingRequestsService; }
public UserController(IPrivilegeService PService, IUserService UService, IDocumentTypesService DTService, IDocumentService DService) { userService = UService; privilegeService = PService; documentService = DService; documentTypeService = DTService; }
public DocumentTypesController(IDocumentTypesService documentTypesService) { _documentTypesService = documentTypesService; }
public DocumentsController(IDocumentService documentService, IDocumentTypesService documentTypesService) { this.documentService = documentService; this.documentTypesService = documentTypesService; }