コード例 #1
0
 public BillPaymentController(IUtilityService utilityservice, IUserCredentialService usercredentialservice, IModuleService iIModuleService,
                              IBillPaymentService BillPaymentService, IBillPaymentItemService BillPaymentItemService, ISuppliersMasterService SuppliersMasterService,
                              IInwardFromSupplierService InwardFromSupplierService, IInwardItemFromSupplierService InwardItemFromSupplierService, IPurchaseOrderDetailService PurchaseOrderDetailService,
                              IDebitNoteService DebitNoteService, IEmployeeMasterService EmployeeMasterService)
 {
     this._utilityservice                = utilityservice;
     this._IUserCredentialService        = usercredentialservice;
     this._iIModuleService               = iIModuleService;
     this._BillPaymentService            = BillPaymentService;
     this._BillPaymentItemService        = BillPaymentItemService;
     this._SuppliersMasterService        = SuppliersMasterService;
     this._InwardFromSupplierService     = InwardFromSupplierService;
     this._InwardItemFromSupplierService = InwardItemFromSupplierService;
     this._PurchaseOrderDetailService    = PurchaseOrderDetailService;
     this._DebitNoteService              = DebitNoteService;
     this._EmployeeMasterService         = EmployeeMasterService;
 }
コード例 #2
0
 public GetBillPaymentHandler(IBillPaymentService billPaymentService, IMapper mapper)
 {
     _billPaymentService = billPaymentService ?? throw new ArgumentNullException(nameof(_billPaymentService));
     _mapper             = mapper ?? throw new ArgumentNullException(nameof(_mapper));
 }
 public DeleteBillPaymentHandler(IBillPaymentService billPaymentService, ICurrentUserService currentUserService, IDateTime dateTime)
 {
     _billPaymentService = billPaymentService ?? throw new ArgumentNullException(nameof(_billPaymentService));
     _currentUserService = currentUserService ?? throw new ArgumentNullException(nameof(_currentUserService));
     _dateTime           = dateTime ?? throw new ArgumentNullException(nameof(_dateTime));
 }
コード例 #4
0
 public BillPaymentHandler(IBillPaymentService billPaymentService)
 {
     _billPaymentService = billPaymentService;
 }