public Quarters None() { Quarters none = new Quarters { Type = "-Select Quarters-" }; return(none); }
public Quarters Luxurious() { Quarters luxurious = new Quarters { Type = "Luxurious", BpCost = 5 }; return(luxurious); }
public Quarters Good() { Quarters good = new Quarters { Type = "Good", BpCost = 2 }; return(good); }
public Quarters Common() { Quarters common = new Quarters { Type = "Common", BpCost = 0 }; return(common); }