diff --git a/SampleWebApiAspNetCore/Services/IFoodService.cs b/SampleWebApiAspNetCore/Services/IFoodService.cs new file mode 100644 index 0000000..4adee8e --- /dev/null +++ b/SampleWebApiAspNetCore/Services/IFoodService.cs @@ -0,0 +1,7 @@ +using Microsoft.AspNetCore.Mvc; +using SampleWebApiAspNetCore.Models; + +namespace SampleWebApiAspNetCore.Services +{ + public interface GetAllFoods(QueryParameters queryParameters, ApiVersion version) +}