Пример #1
0
        public ListingSearchVM SearchListings(FormCollection myCollection)
        {
            ListingSearchVM oLSVM = new ListingSearchVM();

            oLSVM.lListings = new List <ListingSearchListingsVM>();
            return(new ListingSearchVM());
        }
Пример #2
0
        public ActionResult SearchResults(FormCollection myCollection)
        {
            HomeBL          oHBL  = new HomeBL();
            ListingSearchVM oLSVM = oHBL.SearchListings(myCollection);

            return(View(oLSVM));
        }