Files
EstusShots-Net/EstusShots.Server/Services/DrinksService.cs
2020-03-05 18:17:45 +01:00

25 lines
769 B
C#

using System.Threading.Tasks;
using EstusShots.Shared.Interfaces;
using EstusShots.Shared.Models;
using EstusShots.Shared.Models.Parameters;
namespace EstusShots.Server.Services
{
public class DrinksService : IDrinksController
{
public Task<ApiResponse<GetDrinksResponse>> GetDrinks(GetDrinksParameter parameter)
{
throw new System.NotImplementedException();
}
public Task<ApiResponse<GetDrinkDetailsResponse>> GetDrinkDetails(GetDrinkDetailsParameter parameter)
{
throw new System.NotImplementedException();
}
public Task<ApiResponse<SaveDrinkResponse>> SaveDrink(SaveDrinkParameter parameter)
{
throw new System.NotImplementedException();
}
}
}