Example #1
0
 public FilesController(FileDriveContext context, IAuthorizationService authorizationService)
 {
     this.treeBl               = new TreeBL(context);
     this.conversionBl         = new ConversionBL(context);
     this.authorizationBl      = new AuthorizationBL(context);
     this.authorizationService = authorizationService;
 }
Example #2
0
 public TreeEntityEditHandler(FileDriveContext context) : base(context)
 {
 }
Example #3
0
 public TreeBL(FileDriveContext context) : base(context)
 {
 }
Example #4
0
 public UserRepository(FileDriveContext context) : base(context)
 {
 }
Example #5
0
 public PermissionsBL(FileDriveContext context) : base(context)
 {
 }
Example #6
0
 public BaseRepository(FileDriveContext context)
 {
     this.context = context;
     this.dbSet   = context.Set <T>();
 }
Example #7
0
 public TreeEntityOwnerHandler(FileDriveContext context): base(context) { }
Example #8
0
 public LoginBL(FileDriveContext context) : base(context)
 {
 }
Example #9
0
 public PermissionRepository(FileDriveContext context) : base(context)
 {
 }
Example #10
0
 public TreeRepository(FileDriveContext context) : base(context)
 {
 }
 public PermissionsController(FileDriveContext context, IAuthorizationService authorizationService)
 {
     this.permissionsBL        = new PermissionsBL(context);
     this.treeBL               = new TreeBL(context);
     this.authorizationService = authorizationService;
 }
Example #12
0
 public AuthorizationBL(FileDriveContext context) : base(context)
 {
 }
Example #13
0
 public BaseHandler(FileDriveContext context)
 {
     this.authorizationBL = new AuthorizationBL(context);
 }
Example #14
0
 public UnitOfWork(FileDriveContext context)
 {
     this.context = context;
 }
Example #15
0
 public BaseBL(FileDriveContext context)
 {
     unitOfWork = new UnitOfWork(context);
 }
Example #16
0
 public ConversionBL(FileDriveContext context) : base(context)
 {
 }
Example #17
0
 public LoginController(FileDriveContext context)
 {
     loginBL = new LoginBL(context);
 }