コード例 #1
0
        public async Task <IActionResult> GetLayersByClientIdAsync(string clientId)
        {
            var layers = await _assetConditionService.GetClientLayers(clientId);

            var model = Mapper.Map <List <AssetConditionLayerModel> >(layers);

            return(Ok(model));
        }