8 lines
163 B
C#
8 lines
163 B
C#
using ROLAC.API.DTOs.Ministry;
|
|
namespace ROLAC.API.Services;
|
|
|
|
public interface IMinistryService
|
|
{
|
|
Task<List<MinistryDto>> GetAllAsync(bool includeInactive);
|
|
}
|