Exemplo n.º 1
0
        public IActionResult RemoveRating(string username, string id)
        {
            var  ds   = new Dataservice();
            bool done = ds.DeleteRating(username, id);

            if (!done)
            {
                return(NotFound());
            }

            return(Ok());
        }