public Telefono Create(Telefono entity) { if (Verificar(entity)) { TelefonoDAC telefonoDAC = new TelefonoDAC(); Telefono telefono = new Telefono(); telefono = telefonoDAC.Create(entity); telefono = telefonoDAC.ReadBy(telefono); return(telefono); } else { return(null); } }
public Telefono ReadBy(Telefono telefono) { TelefonoDAC telefonoDAC = new TelefonoDAC(); return(telefonoDAC.ReadBy(telefono)); }
public Telefono ReadBy(int id) { TelefonoDAC telefonoDAC = new TelefonoDAC(); return(telefonoDAC.ReadBy(id)); }