Example #1
0
        public async Task <IActionResult> GetBy(int id)
        {
            var selectedArea = await _areaService.FindAsync(id);

            return(Ok(new { success = true, data = selectedArea }));
        }