Initial_commit_SecMPS_v2
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
*代码由框架生成,任何更改都可能导致被代码生成器覆盖
|
||||
*Repository提供数据库操作,如果要增加数据库操作请在当前目录下Partial文件夹historyAlarmRepository编写代码
|
||||
*/
|
||||
using Warehouse.IRepositories;
|
||||
using VolPro.Core.BaseProvider;
|
||||
using VolPro.Core.EFDbContext;
|
||||
using VolPro.Core.Extensions.AutofacManager;
|
||||
using VolPro.Entity.DomainModels;
|
||||
|
||||
namespace Warehouse.Repositories
|
||||
{
|
||||
public partial class historyAlarmRepository : RepositoryBase<historyAlarm> , IhistoryAlarmRepository
|
||||
{
|
||||
public historyAlarmRepository(ServiceDbContext dbContext)
|
||||
: base(dbContext)
|
||||
{
|
||||
|
||||
}
|
||||
public static IhistoryAlarmRepository Instance
|
||||
{
|
||||
get { return AutofacContainerModule.GetService<IhistoryAlarmRepository>(); } }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user