public OperatorsController( IOperatorUseCase operatorUseCase, IAuthorizationUseCase authorizationUseCase, UserManager <ApplicationUser> userManager) { this.operatorService = new OperatorService(operatorUseCase, authorizationUseCase, userManager); }
public OperatorService( IOperatorUseCase operatorUseCase, IAuthorizationUseCase authorizationUseCase, UserManager <ApplicationUser> userManager) { this.operatorUseCase = operatorUseCase; this.authorizationUseCase = authorizationUseCase; this.userManager = userManager; }