public void GetListTest()
        {
            _controller.Request.Method = HttpMethod.Get;

            var actual = _controller.GetList(new ApplyQueryCriteriaRequest()
            {
            }, new UserProfile()) as OkNegotiatedContentResult <PagerInfo <ShopApplicationDto> >;

            Assert.IsNotNull(actual);
        }