Beispiel #1
0
 public bool AddCustomer(Customer newCus)
 {
     try
     {
         db.Customer.Add(newCus);
         db.SaveChanges();
         return(true);
     }
     catch (Exception)
     {
         return(false);
     }
 }
 public bool AddSales(Sales newSales)
 {
     try
     {
         db.Sales.Add(newSales);
         db.SaveChanges();
         return(true);
     }
     catch (Exception)
     {
         return(false);
     }
 }
 public bool AddProduct(Product newPro)
 {
     try
     {
         db.Product.Add(newPro);
         db.SaveChanges();
         return(true);
     }
     catch (Exception)
     {
         return(false);
     }
 }
 public bool AddStore(Store newStore)
 {
     try
     {
         db.Store.Add(newStore);
         db.SaveChanges();
         return(true);
     }
     catch (Exception)
     {
         return(false);
     }
 }