Files
SecMPS/api_sqlsugar/VolPro.Sys/Repositories/Db/Sys_DbServiceRepository.cs
2026-05-15 23:22:48 +08:00

25 lines
794 B
C#
Raw 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.
/*
*代码由框架生成,任何更改都可能导致被代码生成器覆盖
*Repository提供数据库操作如果要增加数据库操作请在当前目录下Partial文件夹Sys_DbServiceRepository编写代码
*/
using VolPro.Sys.IRepositories;
using VolPro.Core.BaseProvider;
using VolPro.Core.EFDbContext;
using VolPro.Core.Extensions.AutofacManager;
using VolPro.Entity.DomainModels;
namespace VolPro.Sys.Repositories
{
public partial class Sys_DbServiceRepository : RepositoryBase<Sys_DbService> , ISys_DbServiceRepository
{
public Sys_DbServiceRepository(SysDbContext dbContext)
: base(dbContext)
{
}
public static ISys_DbServiceRepository Instance
{
get { return AutofacContainerModule.GetService<ISys_DbServiceRepository>(); } }
}
}