public List<V_LandStatistic> GetPersonalLandStatisticListByMultSearch(string strOwnerID, string strOrderBy, string filterString, List<object> objArgs) { using (PersonalLandStatisticBLL bllLand = new PersonalLandStatisticBLL()) { var ents = bllLand.GetPersonalLandStatisticListByMultSearch(strOwnerID, strOrderBy, filterString, objArgs); if (ents == null) { return null; } return ents; } }
public byte[] OutFileLandStatisticList(string strOwnerID, string strOrderBy, string filterString, List<object> objArgs) { using (PersonalLandStatisticBLL bllLand = new PersonalLandStatisticBLL()) { var ents = bllLand.OutFileLandStatisticList(strOwnerID, strOrderBy, filterString, objArgs); if (ents == null) { return null; } return ents; } }