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