using FlowAPI.Domain.Entities; namespace FlowAPI.Application.Interfaces { public interface IHabitRecordRepository : IGenericRepository { Task> GetAllByUserIdAsync(Guid userId); Task GetTodayRecordAsync(Guid userId, string habitName); Task GetRecordForDateAsync(Guid userId, string habitName, DateTime date); } }