public bool UpdateT_HouseStatus(UserInfo user, ref T_HouseInfo t_house, int NewStatus, ref string strError) { T_House_Func tfunc = new T_House_Func(); return(tfunc.UpdateModelStatus(user, ref t_house, NewStatus, ref strError)); }
public bool GetT_HouseListByPage(ref List <T_HouseInfo> modelList, UserInfo user, T_HouseInfo t_house, ref DividPage page, ref string strError) { T_House_Func tfunc = new T_House_Func(); return(tfunc.GetModelListByPage(ref modelList, user, t_house, ref page, ref strError)); }
public bool DeleteT_HouseByModel(UserInfo user, T_HouseInfo model, ref string strError) { T_House_Func tfunc = new T_House_Func(); return(tfunc.DeleteModelByModel(user, model, ref strError)); }
public bool GetT_HouseByID(ref T_HouseInfo model, ref string strError) { T_House_Func tfunc = new T_House_Func(); return(tfunc.GetModelByID(ref model, ref strError)); }
public bool SaveT_House(UserInfo user, ref T_HouseInfo t_house, ref string strError) { T_House_Func tfunc = new T_House_Func(); return(tfunc.SaveModelToDB(user, ref t_house, ref strError)); }