27 lines
751 B
C#
27 lines
751 B
C#
/*
|
||
*Author:COCO
|
||
* 此代码由框架生成,请勿随意更改
|
||
*/
|
||
using iMES.System.IRepositories;
|
||
using iMES.System.IServices;
|
||
using iMES.Core.BaseProvider;
|
||
using iMES.Core.Extensions.AutofacManager;
|
||
using iMES.Entity.DomainModels;
|
||
|
||
namespace iMES.System.Services
|
||
{
|
||
public partial class Sys_DictionaryService : ServiceBase<Sys_Dictionary, ISys_DictionaryRepository>, ISys_DictionaryService, IDependency
|
||
{
|
||
public Sys_DictionaryService(ISys_DictionaryRepository repository)
|
||
: base(repository)
|
||
{
|
||
Init(repository);
|
||
}
|
||
public static ISys_DictionaryService Instance
|
||
{
|
||
get { return AutofacContainerModule.GetService<ISys_DictionaryService>(); }
|
||
}
|
||
}
|
||
}
|
||
|