23 lines
678 B
C#
23 lines
678 B
C#
using iMES.Builder.IRepositories;
|
|
using iMES.Builder.IServices;
|
|
using iMES.Core.BaseProvider;
|
|
using iMES.Core.Extensions.AutofacManager;
|
|
using iMES.Entity.DomainModels;
|
|
|
|
namespace iMES.Builder.Services
|
|
{
|
|
public partial class Sys_TableInfoService : ServiceBase<Sys_TableInfo, ISys_TableInfoRepository>, ISys_TableInfoService, IDependency
|
|
{
|
|
public Sys_TableInfoService(ISys_TableInfoRepository repository)
|
|
: base(repository)
|
|
{
|
|
Init(repository);
|
|
}
|
|
public static ISys_TableInfoService Instance
|
|
{
|
|
get { return AutofacContainerModule.GetService<ISys_TableInfoService>(); }
|
|
}
|
|
}
|
|
}
|
|
|