Beispiel #1
0
 public IEnumerable <Escola> Get()
 {
     return(_repository.Get());
 }
Beispiel #2
0
        public IHttpActionResult Get()
        {
            var dados = _repository.Get(Convert.ToInt32(User.Identity.Name));

            return(Ok(dados));
        }