Example #1
0
        public bool UpdateT_CustomerStatus(UserInfo user, ref T_CustomerInfo t_customer, int NewStatus, ref string strError)
        {
            T_Customer_Func tfunc = new T_Customer_Func();

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

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

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

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

            return(tfunc.DeleteModelByModel(user, model, ref strError));
        }
Example #6
0
        public bool SaveT_Customer(UserInfo user, ref T_CustomerInfo t_customer, ref string strError)
        {
            T_Customer_Func tfunc = new T_Customer_Func();

            return(tfunc.SaveModelToDB(user, ref t_customer, ref strError));
        }