public async Task <ActionResult> InvoiceRegisterperSalesman()
        {
            var model = new AllInOneReportsViewModel
            {
                LoginInformations = await _sessionAppService.GetCurrentLoginInformations(),
                Invoices          = await _invoiceAppService.GetAllInvoices(),
                Salesmans         = (await _salesmanAppService.GetSalesman()).Items
            };

            return(View("InvoiceRegisterperSalesman", model));
        }