using KoogleApp.Entities; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Koogle.Domain.Interfaces { public interface IDayRepository { Task> GetAllAsync(int year); Task GetActiveDayAsync(); Task AddAsync(Day day); Task UpdateAsync(Day day); } }