Ejemplo n.º 1
0
 public List <Tsupplier> GetAllDistinctSuppliers()
 {
     using (var _context = new GiftCardDBContext())
     {
         return(_context.Tsupplier.ToList());
     }
 }
Ejemplo n.º 2
0
 public static void HardSave(this Tsupplier supplier)
 {
     using (var _context = new GiftCardDBContext())
     {
         _context.Tsupplier.Add(supplier);
         _context.SaveChanges();
     }
 }
Ejemplo n.º 3
0
 public List <Tproduct> GetAllProducts()
 {
     using (var context = new GiftCardDBContext())
     {
         var efProducts = context.Tproduct;
         if (efProducts.Count() == 0)
         {
             return(null);
         }
         return(efProducts.ToList());
     }
 }
Ejemplo n.º 4
0
 public void CreateNewProduct(Tproduct efProduct)
 {
     try
     {
         using (var context = new GiftCardDBContext())
         {
             context.Tproduct.Add(efProduct);
             context.SaveChanges();
         }
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
 public CouponInformationController(GiftCardDBContext context)
 {
     _context = context;
 }
Ejemplo n.º 6
0
 public OrderController(GiftCardDBContext context)
 {
     _context = context;
 }
Ejemplo n.º 7
0
 public BasicInformation(GiftCardDBContext context)
 {
     _context = context;
 }
Ejemplo n.º 8
0
 public ProductController(GiftCardDBContext context)
 {
     _context = context;
 }