コード例 #1
0
ファイル: YachtController.cs プロジェクト: war-man/AQ_Project
        public IActionResult GetListYachtName([FromQuery] YachtSearchModel searchModel)
        {
            //LogHelper.InsertLog()
            var result = _yachtService.GetListYachtName(searchModel);

            return(Ok(result));
        }