示例#1
0
文件: Employee.cs 项目: mehabadi/HPMS
 public virtual void RemoveCustomField(SharedEmployeeCustomField customField)
 {
     removeCustomFieldById(customField.Id);
 }
示例#2
0
文件: Employee.cs 项目: mehabadi/HPMS
 public virtual void UpdateCustomFieldValue(SharedEmployeeCustomField customField, string value)
 {
     RemoveCustomField(customField);
     AssignCustomFieldAndValue(customField, value);
 }
示例#3
0
文件: Employee.cs 项目: mehabadi/HPMS
 public virtual void AssignCustomFieldAndValue(SharedEmployeeCustomField customField, string value)
 {
     customFieldValues.Add(customField.Id, value);
 }