32 lines
831 B
C#
32 lines
831 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using VOL.Ai.IRepositories;
|
|
using VOL.Business.IRepositories;
|
|
using VOL.Core.BaseProvider;
|
|
using VOL.Core.EFDbContext;
|
|
using VOL.Core.Extensions.AutofacManager;
|
|
using VOL.Entity.DomainModels;
|
|
|
|
namespace VOL.Ai.Repositories
|
|
{
|
|
/// <summary>
|
|
/// 速度跳绳数据成绩
|
|
/// </summary>
|
|
public partial class FastJumpRopeDataRepository : RepositoryBase<Ai_FastJumpRopeData>, IFastJumpRopeDataRepository
|
|
{
|
|
public FastJumpRopeDataRepository(VOLContext dbContext)
|
|
: base(dbContext)
|
|
{
|
|
|
|
}
|
|
|
|
public static IFastJumpRopeDataRepository Instance
|
|
{
|
|
get { return AutofacContainerModule.GetService<IFastJumpRopeDataRepository>(); }
|
|
}
|
|
}
|
|
}
|