public bool UpdateT_MachineStatus(UserInfo user, ref T_Machine t_customer, int NewStatus, ref string strError) { T_Machine_Func tfunc = new T_Machine_Func(); return(tfunc.UpdateModelStatus(user, ref t_customer, NewStatus, ref strError)); }
public bool GetT_MachineListByPage(ref List <T_Machine> modelList, UserInfo user, T_Machine t_customer, ref DividPage page, ref string strError) { T_Machine_Func tfunc = new T_Machine_Func(); return(tfunc.GetModelListByPage(ref modelList, user, t_customer, ref page, ref strError)); }
public bool DeleteT_MachineByModel(UserInfo user, T_Machine model, ref string strError) { T_Machine_Func tfunc = new T_Machine_Func(); return(tfunc.DeleteDeviceByID(model, ref strError)); }
public bool GetT_MachineByID(ref T_Machine model, ref string strError) { T_Machine_Func tfunc = new T_Machine_Func(); return(tfunc.GetModelByID(ref model, ref strError)); }
public bool SaveT_Machine(UserInfo user, ref T_Machine t_customer, ref string strError) { T_Machine_Func tfunc = new T_Machine_Func(); return(tfunc.SaveData(t_customer, ref strError)); }