コード例 #1
0
ファイル: CustomerHelper.cs プロジェクト: wangrenjay/MEMS
 internal void editCustomer(T_Customer customer)
 {
     using (MEMSEntities db = new MEMSEntities())
     {                
         db.Entry(customer).State = System.Data.EntityState.Modified;  
         db.SaveChanges();
     }
 }
コード例 #2
0
ファイル: ProductHelper.cs プロジェクト: wangrenjay/MEMS
 public bool UpdateProduct(T_Product product)
 {
     using (MEMSEntities db = new MEMSEntities())
     {
         db.Entry(product).State = EntityState.Modified;
         return db.SaveChanges() > 0 ? true : false;
     }
 }
コード例 #3
0
ファイル: SupplierHelper.cs プロジェクト: wangrenjay/MEMS
 internal void updateSupplier(T_Suppliers supplier)
 {
     using (MEMSEntities db = new MEMSEntities())
     {
         db.Entry(supplier).State = System.Data.EntityState.Modified;
         db.SaveChanges();
     }
 }
コード例 #4
0
ファイル: CustomerHelper.cs プロジェクト: wangrenjay/MEMS
 internal void delCustomer(T_Customer customer)
 {
     using (MEMSEntities db = new MEMSEntities())
     {
         //db.T_Customer.Remove(customer);
         var entityentry = db.Entry(customer);
         entityentry.State = EntityState.Deleted;
         db.SaveChanges();
     }
 }
コード例 #5
0
ファイル: CustomerHelper.cs プロジェクト: wangrenjay/MEMS
 internal void UpdateCustomerContacts(T_Customer_contacts contact)
 {
     using (MEMSEntities db = new MEMSEntities())
     {
         db.Entry(contact).State = EntityState.Modified;
         db.SaveChanges();
     }
 }
コード例 #6
0
ファイル: CustomerHelper.cs プロジェクト: wangrenjay/MEMS
 internal void UpdateCustomerAddress(T_Customer_address address)
 {
     using (var db = new MEMSEntities())
     {
         db.Entry(address).State = EntityState.Modified;
         db.SaveChanges();
     }
 }
コード例 #7
0
ファイル: CustomerHelper.cs プロジェクト: wangrenjay/MEMS
 internal void DelCustomerAddress(T_Customer_address address)
 {
     using (MEMSEntities db = new MEMSEntities())
     {
         db.Entry(address).State = EntityState.Deleted;
         db.SaveChanges();
     }
 }
コード例 #8
0
ファイル: ProductHelper.cs プロジェクト: wangrenjay/MEMS
 public bool UpdateCraft(T_Crafts craft)
 {
     using (MEMSEntities db = new MEMSEntities())
     {
         db.Entry(craft).State = EntityState.Modified;
         return db.SaveChanges() > 0 ? true : false;
     }
 }
コード例 #9
0
ファイル: SupplierHelper.cs プロジェクト: wangrenjay/MEMS
 internal void DelSupplierContacts(T_Suppliers_contacts contact)
 {
     using (MEMSEntities db = new MEMSEntities())
     {
         db.Entry(contact).State = EntityState.Deleted;
         db.SaveChanges();
     }
 }