示例#1
0
        public async Task <IActionResult> Get(int id)
        {
            var follow = await _starStore.GetByIdAsync(id);

            if (follow != null)
            {
                return(base.Result(follow));
            }
            return(base.NotFound());
        }