Пример #1
0
 public bool GetCambiarRecepcion(string id, string id1)
 {
     Asistentes_TutoresEntities datos = new Asistentes_TutoresEntities();
     int result = datos.SP_CambiRecepcion(Int32.Parse(id1), Int32.Parse(id));
     if (result > 0)
     {
         return true;
     }
     else
     {
         return false;
     }
 }