public DvdNameContext(char strategyTypeIn) { switch (strategyTypeIn) { case 'C' : this.dvdNameStrategy = new DvdNameAllCapStrategy(); break; case 'E' : this.dvdNameStrategy = new DvdNameTheAtEndStrategy(); break; case 'S' : this.dvdNameStrategy = new DvdNameReplaceSpacesStrategy(); break; default : this.dvdNameStrategy = new DvdNameTheAtEndStrategy(); break; } }
public DvdNameContext(char strategyTypeIn) { switch (strategyTypeIn) { case 'C': this.dvdNameStrategy = new DvdNameAllCapStrategy(); break; case 'E': this.dvdNameStrategy = new DvdNameTheAtEndStrategy(); break; case 'S': this.dvdNameStrategy = new DvdNameReplaceSpacesStrategy(); break; default: this.dvdNameStrategy = new DvdNameTheAtEndStrategy(); break; } }