using System;
using System.Collections.Generic;
using System.Text;
namespace Mini.Model
{
public interface IAdminRepository<T> : IRepository<T> where T : class
}