public ActionResult Get()
 {
     return(Ok(
                horarioService.GetAll()
                ));
 }
Beispiel #2
0
 public IEnumerable <HorarioViewModel> GetAll()
 {
     return(Mapper.Map <IEnumerable <Horario>, IEnumerable <HorarioViewModel> >(_horarioService.GetAll()));
 }