using ROLAC.API.DTOs.Expense; namespace ROLAC.API.Services; public interface IMonthlyStatementService { Task> GetAllAsync(int? year); Task GetByIdAsync(int id); Task CreateAsync(CreateMonthlyStatementRequest r); Task UpdateAsync(int id, UpdateMonthlyStatementRequest r); Task FinalizeAsync(int id); }