public MultipleParameters(IFirstService firstService, ISecondService secondService, IThirdService thirdService,
                           IFourthService fourthService)
 {
     _firstService  = firstService;
     _secondService = secondService;
     _thirdService  = thirdService;
     _fourthService = fourthService;
 }
 public ThirdService(dotnetContext dotnetContext, IFourthService fourthService)
 {
     this._dotnetContext = dotnetContext;
     this._fourthService = fourthService;
 }