Пример #1
0
 public FileController(IFile fileBL, IAdjuster adjusterBL, IEmployer employerBL, IInsurer insurerBL, IInsurerBranch insurerBranchBL, IDepartment department, IInvoice invoice, IPayment payment, IStorageServices storageServices
                       , IARCommonServices arCommonService, IInvoiceNote invoiceNote, IPaymentRefund paymentRefund, IState state)
 {
     _fileBL          = fileBL;
     _adjusterBL      = adjusterBL;
     _employerBL      = employerBL;
     _insurerBL       = insurerBL;
     _insurerBranchBL = insurerBranchBL;
     _department      = department;
     _invoice         = invoice;
     _payment         = payment;
     _storageServices = storageServices;
     _arCommonService = arCommonService;
     _invoiceNote     = invoiceNote;
     _paymentRefund   = paymentRefund;
     _stateBL         = state;
 }
Пример #2
0
 public void InvoiceInitializer()
 {
     _IInvoiceNoteRepository = new InvoiceNoteRepository(new Core.Base.Data.SqlServer.Factory.BaseContextFactory <LMGEDI.Core.Data.SqlServer.LMGEDIDBContext>());
     _IInvoiceNote           = new InvoiceNoteImpl(_IInvoiceNoteRepository);
 }