Ejemplo n.º 1
0
        public async Task <ActionResult> GetSenderInvoicesAsync(Guid id)
        {
            var invoices = await _operationsService.GetSenderInvoicesAsync(id);

            var invoicesViewModel = Mapper.Map <IEnumerable <InvoiceModel> >(invoices);

            return(PartialView(invoicesViewModel));
        }