feat(giving): giving-category service with CRUD + soft-disable
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user