public static IEnumerable<Producto> GetAllProductos() { using (var ctx = new DemoCSLAContainer()) { return ctx.ProductoSet.ToList(); } }
public static IEnumerable <Cliente> GetAllClientes() { using (var ctx = new DemoCSLAContainer()) { return(ctx.ClienteSet.ToList()); } }
public static IEnumerable <Producto> GetAllProductos() { using (var ctx = new DemoCSLAContainer()) { return(ctx.ProductoSet.ToList()); } }
public static IEnumerable<Cliente> GetAllClientes() { using (var ctx = new DemoCSLAContainer()) { return ctx.ClienteSet.ToList(); } }
public static Cliente GetClienteByID(int ID) { using (var ctx = new DemoCSLAContainer()) { var customer = ctx.ClienteSet.SingleOrDefault(c => c.ID == ID); if (customer != null) return customer; throw new InvalidOperationException("No se encuentra el Cliente con el ID especificado"); } }
public static Producto GetProductoById(int id) { using (var ctx = new DemoCSLAContainer()) { var product = ctx.ProductoSet.SingleOrDefault(p => p.ID == id); if (product != null) { return product; } throw new InvalidOperationException("No se encuentra el Producto con el ID especificado"); } }
public static Cliente GetClienteByID(int ID) { using (var ctx = new DemoCSLAContainer()) { var customer = ctx.ClienteSet.SingleOrDefault(c => c.ID == ID); if (customer != null) { return(customer); } throw new InvalidOperationException("No se encuentra el Cliente con el ID especificado"); } }
public static Producto GetProductoById(int id) { using (var ctx = new DemoCSLAContainer()) { var product = ctx.ProductoSet.SingleOrDefault(p => p.ID == id); if (product != null) { return(product); } throw new InvalidOperationException("No se encuentra el Producto con el ID especificado"); } }