public bool GetInsertCoordinador(string id, string id1, string id2, string id3) { Asistentes_TutoresEntities datos = new Asistentes_TutoresEntities(); String encrypted_pass = Encriptar(id3); int result = datos.SP_AgreUser(id, id1, id2, encrypted_pass); if (result > 0) { return true; } else { return false; } }