Added ServiceController

This commit is contained in:
Richárd Kunkli
2020-11-01 12:25:45 +01:00
parent 1172d89484
commit 87d65ba25d
8 changed files with 218 additions and 2 deletions

View File

@ -0,0 +1,15 @@
using Birdmap.DAL.Entities;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Birdmap.BLL.Interfaces
{
public interface IServiceService
{
Task<List<Service>> GetAllServicesAsync();
Task<Service> GetServiceAsync(int id);
Task<Service> CreateServiceAsync(Service service);
Task DeleteServiceAsync(int id);
Task UpdateServiceAsync(Service service);
}
}