public List <Client> GetAll()
 {
     return(_clientBusiness.GetAll());
 }
Beispiel #2
0
        /// <summary>
        /// Obtem todos os clientes cadastrados
        /// </summary>
        /// <returns></returns>
        public List <ClientEntity> GetAll()
        {
            var clients = _clientBusiness.GetAll();

            return(clients);
        }
Beispiel #3
0
 public ActionResult <IEnumerable <Client> > GetAll()
 {
     return(_clientBusiness.GetAll());
 }