feat(expense): add MonthlyStatementService with server-side recompute + tests
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user