You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DSWMS/Vue.Net/VOL.System/Repositories/System/Sys_ImageLibraryRepository.cs

28 lines
735 B
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

/*
*Authorjxx
*Contact283591387@qq.com
*Date2018-07-01
* 此代码由框架生成,请勿随意更改
*/
using VOL.System.IRepositories;
using VOL.Core.BaseProvider;
using VOL.Core.EFDbContext;
using VOL.Core.Extensions.AutofacManager;
using VOL.Entity.DomainModels;
namespace VOL.System.Repositories
{
public partial class Sys_ImageLibraryRepository : RepositoryBase<Sys_ImageLibrary>, ISys_ImageLibraryRepository
{
public Sys_ImageLibraryRepository(VOLContext dbContext)
: base(dbContext)
{
}
public static ISys_ImageLibraryRepository Instance
{
get { return AutofacContainerModule.GetService<ISys_ImageLibraryRepository>(); }
}
}
}