示例#1
0
 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;
 }
示例#2
0
 public UserController(IPrivilegeService PService, IUserService UService, IDocumentTypesService DTService, IDocumentService DService)
 {
     userService         = UService;
     privilegeService    = PService;
     documentService     = DService;
     documentTypeService = DTService;
 }
示例#3
0
 public DocumentTypesController(IDocumentTypesService documentTypesService)
 {
     _documentTypesService = documentTypesService;
 }
示例#4
0
 public DocumentsController(IDocumentService documentService, IDocumentTypesService documentTypesService)
 {
     this.documentService      = documentService;
     this.documentTypesService = documentTypesService;
 }