using System; using System.Collections.Generic; using System.Text; namespace Mini.Model { public class EfAdminRepository : EfRepository, IAdminRepository where T : BaseEntity { public EfAdminRepository(crmContext context) : base(context) { } } }