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.
yxsc-net6/vol-net6/VOL.System/Repositories/flow/Sys_WorkFlowStepRepository.cs

25 lines
801 B

/*
*,
*RepositoryPartialSys_WorkFlowStepRepository
*/
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_WorkFlowStepRepository : RepositoryBase<Sys_WorkFlowStep> , ISys_WorkFlowStepRepository
{
public Sys_WorkFlowStepRepository(VOLContext dbContext)
: base(dbContext)
{
}
public static ISys_WorkFlowStepRepository Instance
{
get { return AutofacContainerModule.GetService<ISys_WorkFlowStepRepository>(); } }
}
}