Ejemplo n.º 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;
 }
Ejemplo n.º 2
0
 public PermissionsController(FileDriveContext context, IAuthorizationService authorizationService)
 {
     this.permissionsBL        = new PermissionsBL(context);
     this.treeBL               = new TreeBL(context);
     this.authorizationService = authorizationService;
 }