86d9879a6d
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
12 lines
375 B
C#
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);
|
|
}
|