using WIDESEA_Builder.IRepositories; using WIDESEA_Builder.IServices; using WIDESEA_Core.BaseProvider; using WIDESEA_Core.Extensions.AutofacManager; using WIDESEA_Entity.DomainModels; namespace WIDESEA_Builder.Services { public partial class Sys_TableInfoService : ServiceBase, ISys_TableInfoService, IDependency { public Sys_TableInfoService(ISys_TableInfoRepository repository) : base(repository) { Init(repository); } public static ISys_TableInfoService Instance { get { return AutofacContainerModule.GetService(); } } } }