31 lines
754 B
C#
31 lines
754 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using VOL.Ai.IRepositories;
|
|
using VOL.Core.BaseProvider;
|
|
using VOL.Core.EFDbContext;
|
|
using VOL.Core.Extensions.AutofacManager;
|
|
using VOL.Entity.DomainModels;
|
|
|
|
namespace VOL.Ai.Repositories
|
|
{
|
|
/// <summary>
|
|
/// App版本信息
|
|
/// </summary>
|
|
public class AiAppVersionRepository : RepositoryBase<Ai_AppVersion>, IAiAppVersionRepository
|
|
{
|
|
public AiAppVersionRepository(VOLContext dbContext)
|
|
: base(dbContext)
|
|
{
|
|
|
|
}
|
|
|
|
public static IAiAppVersionRepository Instance
|
|
{
|
|
get { return AutofacContainerModule.GetService<IAiAppVersionRepository>(); }
|
|
}
|
|
}
|
|
}
|