Example #1
0
 public GetData(IScopedDbContext <TDbContext> context) : base(context)
 {
 }
Example #2
0
 public CreateData(IScopedDbContext <TDbContext> context, IDataProcessorEntityTaskCollection <TEntity> tasks) : base(context)
 {
     this.tasks = tasks;
 }
Example #3
0
 public UpdateRoleProcessor(IScopedDbContext <PlatformDbContext> context, IPlatformUser user, System.Security.Principal.IPrincipal principal) : base(context)
 {
     this.principal = principal;
     this.user      = user;
 }
Example #4
0
 public DeleteData(IScopedDbContext <TDbContext> context) : base(context)
 {
 }
Example #5
0
 public DbOperation(IScopedDbContext <PlatformDbContext> scoped)
 {
     this.scoped = scoped;
 }
Example #6
0
 public DbSetFlowProcessor(IScopedDbContext <TDbContext> context)
 {
     Context = context.DbContext;
     Set     = Context.Set <TEntity>();
 }