Esempio n. 1
0
 public bool DeleteReto(int id)
 {
     return(RetoRepositorio.DeleteReto(id));
 }
Esempio n. 2
0
 public bool PostReto(Reto reto)
 {
     return(RetoRepositorio.PostReto(reto));
 }
Esempio n. 3
0
 public IEnumerable <Reto> GetReto(int id)
 {
     return(RetoRepositorio.GetReto(id));
 }
Esempio n. 4
0
 public bool PutReto(int id, Reto reto)
 {
     return(RetoRepositorio.UpdateReto(id, reto));
 }
Esempio n. 5
0
 public IEnumerable <Reto> GetAllReto()
 {
     return(RetoRepositorio.GetAllRetos());
 }