/// <summary> /// Update into XMProjectCostDetail /// </summary> /// <param name="xmprojectcostdetail">XMProjectCostDetail</param> public void UpdateXMProjectCostDetail(XMProjectCostDetail xmprojectcostdetail) { if (xmprojectcostdetail == null) { return; } if (this._context.IsAttached(xmprojectcostdetail)) { this._context.XMProjectCostDetails.Attach(xmprojectcostdetail); } this._context.SaveChanges(); }
/// <summary> /// Insert into XMProjectCostDetail /// </summary> /// <param name="xmprojectcostdetail">XMProjectCostDetail</param> public void InsertXMProjectCostDetail(XMProjectCostDetail xmprojectcostdetail) { if (xmprojectcostdetail == null) { return; } if (!this._context.IsAttached(xmprojectcostdetail)) { this._context.XMProjectCostDetails.AddObject(xmprojectcostdetail); } this._context.SaveChanges(); }