Example #1
0
        public bool UpdateT_MouldTypeStatus(UserInfo user, ref T_MouldType t_customer, int NewStatus, ref string strError)
        {
            T_MouldType_Func tfunc = new T_MouldType_Func();

            return(tfunc.UpdateModelStatus(user, ref t_customer, NewStatus, ref strError));
        }
Example #2
0
        public bool GetAllT_MouldTypeByHeaderID(ref List <T_MouldType> modelList, int headerID, ref string strError)
        {
            T_MouldType_Func tfunc = new T_MouldType_Func();

            return(tfunc.GetModelListByHeaderID(ref modelList, headerID, ref strError));
        }
Example #3
0
        public bool GetT_MouldTypeListByPage(ref List <T_MouldType> modelList, UserInfo user, T_MouldType t_customer, ref DividPage page, ref string strError)
        {
            T_MouldType_Func tfunc = new T_MouldType_Func();

            return(tfunc.GetModelListByPage(ref modelList, user, t_customer, ref page, ref strError));
        }
Example #4
0
        public bool GetT_MouldTypeByID(ref T_MouldType model, ref string strError)
        {
            T_MouldType_Func tfunc = new T_MouldType_Func();

            return(tfunc.GetModelByID(ref model, ref strError));
        }
Example #5
0
        public bool DeleteT_MouldTypeByModel(UserInfo user, T_MouldType model, ref string strError)
        {
            T_MouldType_Func tfunc = new T_MouldType_Func();

            return(tfunc.DeleteMouldTypeByID(model, ref strError));
        }
Example #6
0
        public bool SaveT_MouldType(UserInfo user, ref T_MouldType t_customer, ref string strError)
        {
            T_MouldType_Func tfunc = new T_MouldType_Func();

            return(tfunc.SaveData(t_customer, ref strError));
        }