public SecondService(dotnetContext dotnetContext)
 {
     this._dotnetContext = dotnetContext;
 }
 public EighthService(dotnetContext dotnetContext)
 {
     this._dotnetContext = dotnetContext;
 }
 public FirstService(dotnetContext dotnetContext, ISecondService secondService)
 {
     this._dotnetContext = dotnetContext;
     this._secondService = secondService;
 }
 public SeventhService(dotnetContext dotnetContext, IEighthService eighthService)
 {
     this._dotnetContext = dotnetContext;
     this._eighthService = eighthService;
 }
 public SixthService(dotnetContext dotnetContext)
 {
     this._dotnetContext = dotnetContext;
 }
 public FifthService(dotnetContext dotnetContext, ISixthService sixthService)
 {
     this._dotnetContext = dotnetContext;
     this._sixthService  = sixthService;
 }
 public FourthService(dotnetContext dotnetContext)
 {
     this._dotnetContext = dotnetContext;
 }
 public ThirdService(dotnetContext dotnetContext, IFourthService fourthService)
 {
     this._dotnetContext = dotnetContext;
     this._fourthService = fourthService;
 }