示例#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());
 }