Files
ROLAC/API/ROLAC.API/Services/IGivingCategoryService.cs
T
2026-05-28 16:29:31 -07:00

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
}