public static void ModificarReceptor(Receptor a) { ValidarReceptor(a); if (PReceptor.ModificarReceptor(a) == -1) { throw new ExcepcionesPersonalizadas.Logica("No se encontró el " + mensaje + "."); } }
public static void DarAltaReceptor(Receptor a, out int id) { ValidarReceptor(a); if (PReceptor.AltaReceptor(a, out id) == -1) { throw new ExcepcionesPersonalizadas.Logica("El " + mensaje + " ya se encuentra en la BD."); } }
public static void DarBajaReceptor(int id) { int resultado = PReceptor.BajaReceptor(id); if (resultado == -1) { throw new ExcepcionesPersonalizadas.Logica("No se encontró ese " + mensaje + "."); } }
public static Receptor BuscarReceptor(int id) { Receptor a = PReceptor.BuscarReceptor(id); if (a == null) { throw new ExcepcionesPersonalizadas.Logica("No se encontró " + mensaje + "."); } return(a); }
public static List <Receptor> ListarReceptor() { return(PReceptor.ListarReceptores()); }