public static void Leer(CedWebEntidades.Cuenta Cuenta, CedEntidades.Sesion Sesion) { CedWebDB.Cuenta cuenta = new CedWebDB.Cuenta(Sesion); cuenta.Leer(Cuenta); Cuenta.Vendedor.IdCuenta = Cuenta.Id; Cuenta.Vendedor.NombreCuenta = Cuenta.Nombre; try { CedWebRN.Vendedor.Leer(Cuenta.Vendedor, Sesion); } catch (Microsoft.ApplicationBlocks.ExceptionManagement.Validaciones.ElementoInexistente) { } }
public static List<CedWebEntidades.Cuenta> Leer(string IdCuenta, CedEntidades.Sesion Sesion) { CedWebDB.Cuenta cuenta = new CedWebDB.Cuenta(Sesion); List<CedWebEntidades.Cuenta> ctas=cuenta.Leer(IdCuenta); return ctas; }