798dfa3fe0
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
12 lines
388 B
C#
12 lines
388 B
C#
using ROLAC.API.DTOs.Giving;
|
|
|
|
namespace ROLAC.API.Services;
|
|
|
|
public interface IGivingCategoryService
|
|
{
|
|
Task<List<GivingCategoryDto>> GetAllAsync(bool includeInactive);
|
|
Task<int> CreateAsync(CreateGivingCategoryRequest request);
|
|
Task UpdateAsync(int id, UpdateGivingCategoryRequest request);
|
|
Task DeactivateAsync(int id); // soft-disable: IsActive = false
|
|
}
|