Esempio n. 1
0
        public IEnumerable <UserProfileModel> Get(int page, int count, string orderByExpression = null, string whereCondition = null)
        {
            var filter = UserProfileFilter.Deserilize(whereCondition);

            return(_userProfileService.Query(page, count, filter, orderByExpression));
        }
Esempio n. 2
0
        public object GetCount(int page, int count, string orderByExpression = null, string whereCondition = null)
        {
            var filter = UserProfileFilter.Deserilize(whereCondition);

            return(_userProfileService.GetCount(page, count, filter, orderByExpression));
        }