27 lines
703 B
C#
27 lines
703 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_RoleService : ServiceBase<Sys_Role, ISys_RoleRepository>, ISys_RoleService, IDependency
|
||
{
|
||
public Sys_RoleService(ISys_RoleRepository repository)
|
||
: base(repository)
|
||
{
|
||
Init(repository);
|
||
}
|
||
public static ISys_RoleService Instance
|
||
{
|
||
get { return AutofacContainerModule.GetService<ISys_RoleService>(); }
|
||
}
|
||
}
|
||
}
|
||
|