本文整理汇总了C#中Department.Save方法的典型用法代码示例。如果您正苦于以下问题:C# Department.Save方法的具体用法?C# Department.Save怎么用?C# Department.Save使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Department
的用法示例。
在下文中一共展示了Department.Save方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Update
public void Update(int DepartmentID,string DepartmentX)
{
Department item = new Department();
item.MarkOld();
item.IsLoaded = true;
item.DepartmentID = DepartmentID;
item.DepartmentX = DepartmentX;
item.Save(UserName);
}
示例2: insert_department
//end update
/// <summary>
/// new record
/// </summary>
protected int insert_department()
{
int _newid = 0;
try
{
///new instance of record
Department _tbl = new Department();
//get values off insert form
//check for duplicate name
ASPxTextBox _txt = (ASPxTextBox)this.fmvDepartment.FindControl("dxtxtDepartmentInsert");
if (_txt != null && _txt.Text != "")
{
string _newvalue = _txt.Text.ToString(); //country name
if (!wwi_func.value_exists("Department", "Departments", _newvalue))
{
_tbl.DepartmentX = _txt.Text.Trim();
//insert
_tbl.Save();
//get new id
_newid = (int)_tbl.GetPrimaryKeyValue();
}
else
{
string _ex = string.Format("{0} is already in database. This record will not be saved", _newvalue);
this.dxlblErr.Text = _ex;
this.dxpnlErr.ClientVisible = true;
}
}
}
catch (Exception ex)
{
string _ex = ex.Message.ToString();
this.dxlblErr.Text = _ex;
this.dxpnlErr.ClientVisible = true;
}
return _newid;
}
示例3: Insert
public void Insert(string DepartmentX)
{
Department item = new Department();
item.DepartmentX = DepartmentX;
item.Save(UserName);
}
示例4: update_department
/// <summary>
/// update Place table
/// </summary>
/// <param name="hblid">int</param>
protected void update_department()
{
//voyageid
int _pid = wwi_func.vint(wwi_security.DecryptString(get_token("pid").ToString(), "publiship"));
//original value for name
string _oldvalue = this.dxhfOrder.Contains("oldvalue") ? this.dxhfOrder.Get("oldvalue").ToString() : "";
if (_pid > 0)
{
try
{
//new instance of record
Department _tbl = new Department(_pid);
//get values off insert form
//check duplicate name
ASPxTextBox _txt = (ASPxTextBox)this.fmvDepartment.FindControl("dxtxtDepartmentEdit");
if (_txt != null && _txt.Text != "")
{
string _newvalue = _txt.Text.ToString(); //name
bool _duplicate = _newvalue != _oldvalue ? wwi_func.value_exists("Department", "Departments", _newvalue) : false;
if (!_duplicate)
{
_tbl.DepartmentX = _newvalue.Trim();
//update
_tbl.Save();
}
else
{
string _ex = string.Format("{0} is already in database. This record will not be saved", _newvalue);
this.dxlblErr.Text = _ex;
this.dxpnlErr.ClientVisible = true;
}
}
}
catch (Exception ex)
{
string _ex = ex.Message.ToString();
this.dxlblErr.Text = _ex;
this.dxpnlErr.ClientVisible = true;
}
}
else
{
string _ex = "Can't update record ID = 0";
this.dxlblErr.Text = _ex;
this.dxpnlErr.ClientVisible = true;
}
}