using Birdmap.DAL.Entities; using System.Collections.Generic; using System.Threading.Tasks; namespace Birdmap.BLL.Interfaces { public interface IServiceService { Task GetServiceCountAsync(); Task> GetAllServicesAsync(); Task GetServiceAsync(int id); Task CreateServiceAsync(Service service); Task DeleteServiceAsync(int id); Task UpdateServiceAsync(Service service); } }