public StrokeController(IStrokeService strokeService, ILineService lineService) { _strokeService = strokeService; _lineService = lineService; }
/// <summary> /// Initializes a new instance of the <see cref="StrokeController"/> class. /// </summary> /// <param name="strokeService"></param> public StrokeController(IStrokeService strokeService) { this.strokeService = strokeService; }
public ReceiveDataHandler(ILineService lineService, IStrokeService strokeService) { _lineService = lineService; _strokeService = strokeService; }