コード例 #1
0
ファイル: FloorController.cs プロジェクト: uwitec/KMEasyCare
        public IHttpActionResult Get(int currentPage = 1, int pageSize = 10, string floorName = "")
        {
            BaseRequest <OrgFloorFilter> request = new BaseRequest <OrgFloorFilter>
            {
                CurrentPage = currentPage,
                PageSize    = pageSize,
                Data        = { FloorName = floorName, OrgId = SecurityHelper.CurrentPrincipal.OrgId }
            };
            var response = organizationManageService.QueryOrgFloorExtend(request);

            return(Ok(response));
        }