public void ListPersonsTest()
        {
            var queryParam = new ListPersonalInfoQueryParam();

            //queryParam.AgeFrom = 25;
            //queryParam.ThruAge = 26;
            //queryParam.UserNumber = "sbi";
            //queryParam.CategoryTypeIds = new List<string> { "MODELING" };
            //queryParam.CategoryTypeIds = new System.Collections.Generic.List<string>() { "FILM", "MODELING" };
            queryParam.HeightFrom = 1.56;
            queryParam.HeightThru = 1.56;
            queryParam.HeightUom  = "METER";

            var result = _queryService.ListSearchPersonalInfos(queryParam);

            Assert.IsNotNull(result);
        }
Beispiel #2
0
 public GetListSearchPersonalInfos ListSearchPersonalInfos(ListPersonalInfoQueryParam queryParam)
 {
     return(_modelManagementQueryServices.ListSearchPersonalInfos(queryParam));
 }