Esempio n. 1
0
 public BubbleSortServiceTests()
 {
     this.bubbleSortService = new BubbleSortService();
 }
Esempio n. 2
0
 public BubbleSortController(IMapper mapper, IBubbleSortService bubbleSortService)
 {
     this.mapper            = mapper;
     this.bubbleSortService = bubbleSortService;
 }