Exemplo n.º 1
0
 public void Setup()
 {
     rotationService   = new RotationService();
     arrayMatrixHelper = new BodyHelper {
         matrix = arrayMatrix.ConvertToList()
     };
     listMatrixHelper = new BodyHelper {
         matrix = listMatrix
     };
 }
Exemplo n.º 2
0
 public RotationsController(IRotationService rotationService,
                            ICommandDispatcher commandDispatcher)
 {
     _rotationService   = rotationService;
     _commandDispatcher = commandDispatcher;
 }
Exemplo n.º 3
0
 public MatrixController(IRotationService rotationService)
 {
     this.rotationService = rotationService;
 }
Exemplo n.º 4
0
 public CreateRotationHandler(IRotationService rotationService)
 {
     _rotationService = rotationService;
 }
Exemplo n.º 5
0
 public void Setup()
 {
     rotationService = new RotationService();
 }
Exemplo n.º 6
0
 public TokenService(IAbsoluteDifferenceService absoluteDifferenceService, IRotationService rotationService, ICreditCardRepository repository)
 {
     _adService       = absoluteDifferenceService;
     _rotationService = rotationService;
     _repository      = repository;
 }