Files
iMES_Net/iMES.Bi/Services/BiManage/Bi_db_sourceService.cs
2026-02-06 18:34:35 +08:00

27 lines
810 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/*
*AuthorCOCO
*代码由框架生成,此处任何更改都可能导致被代码生成器覆盖
*所有业务编写全部应在Partial文件夹下Bi_db_sourceService与IBi_db_sourceService中编写
*/
using iMES.Bi.IRepositories;
using iMES.Bi.IServices;
using iMES.Core.BaseProvider;
using iMES.Core.Extensions.AutofacManager;
using iMES.Entity.DomainModels;
namespace iMES.Bi.Services
{
public partial class Bi_db_sourceService : ServiceBase<Bi_db_source, IBi_db_sourceRepository>
, IBi_db_sourceService, IDependency
{
public Bi_db_sourceService(IBi_db_sourceRepository repository)
: base(repository)
{
Init(repository);
}
public static IBi_db_sourceService Instance
{
get { return AutofacContainerModule.GetService<IBi_db_sourceService>(); } }
}
}