コード例 #1
0
ファイル: ServiceProductLine.cs プロジェクト: shew990/TaiBang
        public bool UpdateT_ProductLineStatus(UserInfo user, ref T_ProductLine t_customer, int NewStatus, ref string strError)
        {
            T_ProductLine_Func tfunc = new T_ProductLine_Func();

            return(tfunc.UpdateModelStatus(user, ref t_customer, NewStatus, ref strError));
        }
コード例 #2
0
ファイル: ServiceProductLine.cs プロジェクト: shew990/TaiBang
        public bool GetT_ProductLineListByPage(ref List <T_ProductLine> modelList, UserInfo user, T_ProductLine t_customer, ref DividPage page, ref string strError)
        {
            T_ProductLine_Func tfunc = new T_ProductLine_Func();

            return(tfunc.GetModelListByPage(ref modelList, user, t_customer, ref page, ref strError));
        }
コード例 #3
0
ファイル: ServiceProductLine.cs プロジェクト: shew990/TaiBang
        public bool DeleteT_ProductLineByModel(UserInfo user, T_ProductLine model, ref string strError)
        {
            T_ProductLine_Func tfunc = new T_ProductLine_Func();

            return(tfunc.DeleteModelByModel(user, model, ref strError));
        }
コード例 #4
0
ファイル: ServiceProductLine.cs プロジェクト: shew990/TaiBang
        public bool GetT_ProductLineByID(ref T_ProductLine model, ref string strError)
        {
            T_ProductLine_Func tfunc = new T_ProductLine_Func();

            return(tfunc.GetModelByID(ref model, ref strError));
        }
コード例 #5
0
ファイル: ServiceProductLine.cs プロジェクト: shew990/TaiBang
        public bool SaveT_ProductLine(UserInfo user, ref T_ProductLine t_customer, ref string strError)
        {
            T_ProductLine_Func tfunc = new T_ProductLine_Func();

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