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;
 }
Esempio n. 3
0
 public ReceiveDataHandler(ILineService lineService, IStrokeService strokeService)
 {
     _lineService   = lineService;
     _strokeService = strokeService;
 }