using Demo.Domain.Models; namespace Demo.Domain.UseCase { public interface IAdminUseCase{ bool ExcelExport(int groupID); List GetPresenceByUser(Guid userGuid); List GetPresenceByGroup(int groupID); } }