28 lines
731 B
C#
28 lines
731 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using VOL.Business.IRepositories;
|
|
using VOL.Core.BaseProvider;
|
|
using VOL.Core.EFDbContext;
|
|
using VOL.Core.Extensions.AutofacManager;
|
|
using VOL.Entity.DomainModels;
|
|
using VOL.System.IRepositories;
|
|
|
|
namespace VOL.Business.Repositories
|
|
{
|
|
public partial class Ai_SpecialRepository : RepositoryBase<Ai_Special>, IAi_SpecialRepository
|
|
{
|
|
public Ai_SpecialRepository(VOLContext dbContext)
|
|
: base(dbContext)
|
|
{
|
|
|
|
}
|
|
public static IAi_SpecialRepository Instance
|
|
{
|
|
get { return AutofacContainerModule.GetService<IAi_SpecialRepository>(); }
|
|
}
|
|
}
|
|
}
|