public IActionResult CashInsert(CashboxInputDto cashboxInputDto)
        {
            _cashboxService.Insert(new Cashbox {
                CashTypeId    = cashboxInputDto.CashTypeItemList[0],
                TotalQuantity = cashboxInputDto.TotalQuantity
            }
                                   );

            FireAndForgetJobs.GetCurrencyJob();
            return(View("CashInsert", GetViewModelData()));
        }