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