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