예제 #1
0
 public IHttpActionResult GuardarEdicionInstructor(Instructor_Tecnica ObjInstruc)
 {
     try
     {
         TecnicaBl obj = new TecnicaBl();
         obj.GuardarEdicionInstructor(ObjInstruc);
         return(Ok(new { success = true }));
     }
     catch (Exception exc)
     {
         return(Ok(new { success = false, exc = exc.Message }));
     }
 }