using ROLAC.API.DTOs.Expense; namespace ROLAC.API.Services; public interface IExpenseSnapshotService { Task> GetAllAsync(); Task GetByIdAsync(int id); Task CreateAsync(CreateExpenseSnapshotRequest r); Task UpdateAsync(int id, UpdateExpenseSnapshotRequest r); Task DeleteAsync(int id); }