Example #1
0
        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;
            }
        }
Example #2
0
        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;
            }
        }