public CommsController(IOutageCommunicationService outageService)
 {
     _outageService = outageService;
 }
Exemplo n.º 2
0
 public CommsController(IOutageCommunicationService outageService, IArmService armService)
 {
     this._outageService = outageService;
     this._armService    = armService;
 }