コード例 #1
0
        public ActionResult TypeOfMerchandising(TypeOfUse typeOfUse)
        {
            var model = new ChooseTypeOfMerchandisingViewModel {
                TypeOfUse = typeOfUse
            };

            return(View(model));
        }
コード例 #2
0
 public UnitIntendedUse(TypeOfUse typeOfUse, string lineOfBusiness, string unitPurpose)
 {
     TypeOfUse      = typeOfUse;
     LineOfBusiness = lineOfBusiness;
     UnitPurpose    = unitPurpose;
 }
コード例 #3
0
        public ActionResult ChoosePropertyType(TypeOfMerchandising typeOfMerchandising, TypeOfUse typeOfUse)
        {
            var model = new InitListingViewModel
            {
                TypeOfUse           = typeOfUse,
                TypeOfMerchandising = typeOfMerchandising
            };

            return(View(model));
        }