Exemplo n.º 1
0
        public IActionResult Get(int id)
        {
            var store = _storeBusiness.FindById(id);

            if (store == null)
            {
                return(NotFound());
            }
            return(Ok(store));
        }