public async Task <List <Tuple <string, string, string> > > GetCustomerVatAndNameAsync(IDpsCustomer idpsCustomer) { var allCustomers = await idpsCustomer.GetAllCustomersAsync(); var Model = new List <Tuple <string, string, string> >(); foreach (var customer in allCustomers) { Model.Add(new Tuple <string, string, string>(customer.Customer.VatNumber, customer.Customer.Name, customer.Customer.OfficialName)); } return(Model); }
public async Task <List <DpsCustomer> > GetAllCustomersAsync(IDpsCustomer idpsCustomer) { return(await idpsCustomer.GetAllCustomersAsync()); }