Files
ROLAC/API/ROLAC.API/Services/IMonthlyStatementService.cs
T
2026-05-29 18:34:39 -07:00

12 lines
375 B
C#

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