コード例 #1
0
        public bool UpdateT_PickRuleStatus(UserInfo user, ref T_PickRuleInfo t_pickrule, int NewStatus, ref string strError)
        {
            T_PickRule_Func tfunc = new T_PickRule_Func();

            return(tfunc.UpdateModelStatus(user, ref t_pickrule, NewStatus, ref strError));
        }
コード例 #2
0
        public bool GetAllT_PickRuleByHeaderID(ref List <T_PickRuleInfo> modelList, int headerID, ref string strError)
        {
            T_PickRule_Func tfunc = new T_PickRule_Func();

            return(tfunc.GetModelListByHeaderID(ref modelList, headerID, ref strError));
        }
コード例 #3
0
        public bool GetT_PickRuleListByPage(ref List <T_PickRuleInfo> modelList, UserInfo user, T_PickRuleInfo t_pickrule, ref DividPage page, ref string strError)
        {
            T_PickRule_Func tfunc = new T_PickRule_Func();

            return(tfunc.GetModelListByPage(ref modelList, user, t_pickrule, ref page, ref strError));
        }
コード例 #4
0
        public bool GetT_PickRuleByID(ref T_PickRuleInfo model, ref string strError)
        {
            T_PickRule_Func tfunc = new T_PickRule_Func();

            return(tfunc.GetModelByID(ref model, ref strError));
        }
コード例 #5
0
        public bool DeleteT_PickRuleByModel(UserInfo user, T_PickRuleInfo model, ref string strError)
        {
            T_PickRule_Func tfunc = new T_PickRule_Func();

            return(tfunc.DeleteModelByModel(user, model, ref strError));
        }
コード例 #6
0
        public bool SaveT_PickRule(UserInfo user, ref T_PickRuleInfo t_pickrule, ref string strError)
        {
            T_PickRule_Func tfunc = new T_PickRule_Func();

            return(tfunc.SaveModelBySqlToDB(user, ref t_pickrule, ref strError));
        }