public HomeController(ICategoryService categoryService, IBookService bookService, ICashboxService cashboxService)
 {
     _categoryService = categoryService ?? throw new System.ArgumentNullException(nameof(categoryService));
     _bookService     = bookService ?? throw new System.ArgumentNullException(nameof(bookService));
     _cashboxService  = cashboxService;
 }
 public CashboxController(ICashboxService cashboxService, ICashTypeService cashTypeService)
 {
     _cashboxService  = cashboxService;
     _cashTypeService = cashTypeService;
 }
 public FinancialCashScheduleJobManager(IFinancialCashService financialCashService, ICurrencyService currencyService, ICashboxService cashboxService)
 {
     _financialCashService = financialCashService;
     _currencyService      = currencyService;
     _cashboxService       = cashboxService;
 }