Beispiel #1
0
 public RentANewApartment(IProjectService projectService, IActionService actionService, IActionListService actionListService, IOutputSink output, ISomeSingletonService someSingletonService)
 {
     this.projectService       = projectService;
     this.actionService        = actionService;
     this.actionListService    = actionListService;
     this.output               = output;
     this.someSingletonService = someSingletonService;
 }
Beispiel #2
0
        public MountEverestBaseCampTrack(IProjectService projectService, IActionService actionService, IActionListService actionListService, IOutputSink output, ISomeSingletonService someSingletonService)
        {
            output.WriteVerboseMessage($"Executing {nameof(MountEverestBaseCampTrack)}.ctor");

            this.projectService       = projectService;
            this.actionService        = actionService;
            this.actionListService    = actionListService;
            this.output               = output;
            this.someSingletonService = someSingletonService;
        }
Beispiel #3
0
        public MountEverestBaseCampTrackNextSteps(IActionService actionService, IActionListService actionListService, IOutputSink output, ISomeSingletonService someSingletonService)
        {
            output.WriteVerboseMessage($"Executing {nameof(MountEverestBaseCampTrackNextSteps)}.ctor");

            this.actionService        = actionService;
            this.actionListService    = actionListService;
            this.output               = output;
            this.someSingletonService = someSingletonService;

            // TODO: How to silence the compiler?
            MountEverestBaseCampTrack = new MountEverestBaseCampTrack.Yield();
        }