You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
831 B

/*
*,
*RepositoryPartialFormCollectionObjectRepository
*/
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 FormCollectionObjectRepository : RepositoryBase<FormCollectionObject> , IFormCollectionObjectRepository
{
public FormCollectionObjectRepository(SysDbContext dbContext)
: base(dbContext)
{
}
public static IFormCollectionObjectRepository Instance
{
get { return AutofacContainerModule.GetService<IFormCollectionObjectRepository>(); } }
}
}