presence/data/Repository/IAdminRepository.cs

9 lines
157 B
C#
Raw Permalink Normal View History

2024-11-01 14:11:27 +00:00
using Demo.Domain.Models;
namespace Demo.Data.Repository
{
public interface IAdminRepository
{
List<GroupLocalEntity> GetAllGroup();
}
}