Demo/Data/Repository/IAdminRepository.cs

9 lines
157 B
C#
Raw Permalink Normal View History

2024-10-30 06:35:19 +00:00
using Demo.Domain.Models;
namespace Demo.Data.Repository
{
public interface IAdminRepository
{
List<GroupLocalEntity> GetAllGroup();
}
}