public RecognizedDevelopmentInstallation(
     GeneralInstallationLogic generalInstallationLogic, ExistingInstallationLogic existingInstallationLogic, KnownSystemLogic knownSystemLogic,
     RecognizedInstallationLogic recognizedInstallationLogic)
 {
     this.generalInstallationLogic = generalInstallationLogic;
     this.existingInstallationLogic = existingInstallationLogic;
     this.knownSystemLogic = knownSystemLogic;
     this.recognizedInstallationLogic = recognizedInstallationLogic;
     developmentInstallationLogic = new DevelopmentInstallationLogic( generalInstallationLogic, existingInstallationLogic, recognizedInstallationLogic );
 }
 public RecognizedDevelopmentInstallation(
     GeneralInstallationLogic generalInstallationLogic, ExistingInstallationLogic existingInstallationLogic, KnownSystemLogic knownSystemLogic,
     RecognizedInstallationLogic recognizedInstallationLogic)
 {
     this.generalInstallationLogic    = generalInstallationLogic;
     this.existingInstallationLogic   = existingInstallationLogic;
     this.knownSystemLogic            = knownSystemLogic;
     this.recognizedInstallationLogic = recognizedInstallationLogic;
     developmentInstallationLogic     = new DevelopmentInstallationLogic(generalInstallationLogic, existingInstallationLogic, recognizedInstallationLogic);
 }
 public UnrecognizedDevelopmentInstallation( GeneralInstallationLogic generalInstallationLogic, ExistingInstallationLogic existingInstallationLogic )
 {
     this.generalInstallationLogic = generalInstallationLogic;
     this.existingInstallationLogic = existingInstallationLogic;
     developmentInstallationLogic = new DevelopmentInstallationLogic( generalInstallationLogic, existingInstallationLogic, null );
 }
 public UnrecognizedDevelopmentInstallation(GeneralInstallationLogic generalInstallationLogic, ExistingInstallationLogic existingInstallationLogic)
 {
     this.generalInstallationLogic  = generalInstallationLogic;
     this.existingInstallationLogic = existingInstallationLogic;
     developmentInstallationLogic   = new DevelopmentInstallationLogic(generalInstallationLogic, existingInstallationLogic, null);
 }