public static bool AddAssetBudgetATC(AssetBudgetATC astBud) { try { using (BudgetCaptureDBEntities db = new BudgetCaptureDBEntities()) { db.AssetBudgetATCs.Add(astBud); db.SaveChanges(); return(true); } } catch (Exception ex) { // Utility.WriteError("Error Msg: " + ex.Message); throw ex; } }
public static bool UpdateAssetBudgetATC(AssetBudgetATC astBud) { try { bool rst = false; using (var db = new BudgetCaptureDBEntities()) { db.AssetBudgetATCs.Attach(astBud); db.Entry(astBud).State = System.Data.Entity.EntityState.Modified; db.SaveChanges(); rst = true; } return(rst); } catch (Exception ex) { // Utility.WriteError("Error Msg: " + ex.Message); throw ex; } }