public static bool Update(Employee employee) { return(EmployeeSQL.Update(employee)); }
/// <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); }