Пример #1
0
        public async Task <ActionResult> Delete(string make, string model)
        {
            var carType = new CarType()
            {
                Make = make, Model = model
            };
            await carCache.InvalidateAsync(carType);

            return(NoContent());
        }