示例#1
0
        public bool UpdateT_CustomerAddressStatus(UserInfo user, ref T_CustomerAddressInfo t_customeraddress, int NewStatus, ref string strError)
        {
            T_CustomerAddress_Func tfunc = new T_CustomerAddress_Func();

            return(tfunc.UpdateModelStatus(user, ref t_customeraddress, NewStatus, ref strError));
        }
示例#2
0
        public bool GetAllT_CustomerAddressByHeaderID(ref List <T_CustomerAddressInfo> modelList, int headerID, ref string strError)
        {
            T_CustomerAddress_Func tfunc = new T_CustomerAddress_Func();

            return(tfunc.GetModelListByHeaderID(ref modelList, headerID, ref strError));
        }
示例#3
0
        public bool GetT_CustomerAddressListByPage(ref List <T_CustomerAddressInfo> modelList, UserInfo user, T_CustomerAddressInfo t_customeraddress, ref DividPage page, ref string strError)
        {
            T_CustomerAddress_Func tfunc = new T_CustomerAddress_Func();

            return(tfunc.GetModelListByPage(ref modelList, user, t_customeraddress, ref page, ref strError));
        }
示例#4
0
        public bool GetT_CustomerAddressByID(ref T_CustomerAddressInfo model, ref string strError)
        {
            T_CustomerAddress_Func tfunc = new T_CustomerAddress_Func();

            return(tfunc.GetModelByID(ref model, ref strError));
        }
示例#5
0
        public bool DeleteT_CustomerAddressByModel(UserInfo user, T_CustomerAddressInfo model, ref string strError)
        {
            T_CustomerAddress_Func tfunc = new T_CustomerAddress_Func();

            return(tfunc.DeleteModelByModel(user, model, ref strError));
        }
示例#6
0
        public bool SaveT_CustomerAddress(UserInfo user, ref T_CustomerAddressInfo t_customeraddress, ref string strError)
        {
            T_CustomerAddress_Func tfunc = new T_CustomerAddress_Func();

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