Ejemplo n.º 1
0
 public ChitDueService(IUnitOfWork unitOfWork,
                       IAccountBookService bookService,
                       IVoucherTypeService voucherTypeService) : base(unitOfWork)
 {
     this.bookService    = bookService;
     this.voucherService = voucherTypeService;
 }
Ejemplo n.º 2
0
 public ChitDueController(IChitDueService chitDueService,
                          IVoucherTypeService voucherTypeService,
                          IAccountBookService accountBookService)
 {
     this._chitDueService = chitDueService;
     _voucherTypeService  = voucherTypeService;
     _accountBookService  = accountBookService;
 }
Ejemplo n.º 3
0
 public SubscribeService(IUnitOfWork <ApiContext> unitOfWork,
                         IAccountBookService bookService,
                         IVoucherTypeService voucherTypeService)
     : base(unitOfWork)
 {
     _unitOfWork              = unitOfWork;
     this.bookService         = bookService;
     this._voucherTypeService = voucherTypeService;
 }
 public VoucherTypeController(IVoucherTypeService promoService, IHttpContextAccessor accessor)
 {
     _promoService = promoService;
 }