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