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