예제 #1
0
 public static bool Update(Employee employee)
 {
     return(EmployeeSQL.Update(employee));
 }
예제 #2
0
 /// <summary>
 /// updates variouse information for an employee
 /// </summary>
 /// <param name="cus">employee info</param>
 /// <param name="type">type of information being updated</param>
 public static void Modify(Employee cus, updateType type)
 {
     EmployeeSQL.Update(cus, type);
 }