Added dashboard services

Added GetCount endpoint
Added ServiceInfo Skeletons
This commit is contained in:
2020-11-19 20:43:01 +01:00
parent 779e21909c
commit 8979ad6db3
28 changed files with 1600 additions and 58 deletions

View File

@ -6,6 +6,7 @@ namespace Birdmap.BLL.Interfaces
{
public interface IServiceService
{
Task<int> GetServiceCountAsync();
Task<List<Service>> GetAllServicesAsync();
Task<Service> GetServiceAsync(int id);
Task<Service> CreateServiceAsync(Service service);