30 lines
839 B
C#
30 lines
839 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 StadiumResourceRepository : RepositoryBase<Y_StadiumResource>, IStadiumResourceRepository
|
|
{
|
|
public StadiumResourceRepository(VOLContext dbContext)
|
|
: base(dbContext)
|
|
{
|
|
|
|
}
|
|
public static IStadiumResourceRepository Instance
|
|
{
|
|
get { return AutofacContainerModule.GetService<IStadiumResourceRepository>(); }
|
|
}
|
|
}
|
|
}
|