Exemplo n.º 1
0
        public async Task <IPagedList <Client> > Get()
        {
            //var client = new Client { ClientName = "Client 1", EIN = 11111, CreatedDate = DateTime.Now };
            //await _clientBusiness.Post(client);
            var result = _clientBusiness.Get();

            return(await result);
        }
 public Client Get(Guid key)
 {
     return(_clientBusiness.Get(key));
 }