Exemplo n.º 1
0
 public IHttpActionResult GuardarModificacion(Colegios ObjColegio)
 {
     try
     {
         TecnicaBl obj = new TecnicaBl();
         obj.GuardarModificacion(ObjColegio);
         return(Ok(new { success = true }));
     }
     catch (Exception exc)
     {
         return(Ok(new { success = false, exc = exc.Message }));
     }
 }