Exemple #1
0
        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));
        }
Exemple #2
0
        public bool GetAllT_MachineByHeaderID(ref List <T_Machine> modelList, int headerID, ref string strError)
        {
            T_Machine_Func tfunc = new T_Machine_Func();

            return(tfunc.GetModelListByHeaderID(ref modelList, headerID, ref strError));
        }
Exemple #3
0
        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));
        }
Exemple #4
0
        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));
        }
Exemple #5
0
        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));
        }
Exemple #6
0
        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));
        }