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)); }
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)); }
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)); }
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)); }
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)); }