public QuickSortServiceTests()
 {
     this.quickSortService = new QuickSortService();
 }
Ejemplo n.º 2
0
 public AlgorithmsAppService(IQuickSortService quickSortService)
 {
     this.quickSortService = quickSortService;
 }
Ejemplo n.º 3
0
 public QuickSortController(IMapper mapper, IQuickSortService quickSortService)
 {
     this.mapper           = mapper;
     this.quickSortService = quickSortService;
 }