コード例 #1
0
        // HttpPost is an "Action Selector". We use Post bc we are creating the page's database.
        // When we only want to get things from the database and change what we see, we will use HttpGet
        // Note: HttpPut, HttpDelete, HttpMerge etc are methods as well.
        // The method below executes if the request method is HttpPost
        public ActionResult ScrapeCraigslist(string aSearch, string aCity)
        {
            CraigslistScraper     aCraigslistScraper = new CraigslistScraper();
            List <CraigslistPost> aListOfCraigslistPosts;
            FileGateway           aFileGateway = new FileGateway();

            // Search Craislist
            aListOfCraigslistPosts = aCraigslistScraper.ScrapeCraigslist(aSearch, aCity);

            // Sorting by price
            var priceLowToHigh = from p in aListOfCraigslistPosts
                                 orderby p.Price ascending
                                 select p;

            // Sorting by date
            var dateNewToOld = from p in aListOfCraigslistPosts
                               orderby p.Date descending
                               select p;

            ViewBag.ListOfCraigslistPosts = dateNewToOld;
            //ViewBag.ListOfCraigslistPosts = priceLowToHigh;
            //ViewBag.ListOfCraigslistPosts = aListOfCraigslistPosts;

            ViewBag.Check = "true";

            return(View());
        }
コード例 #2
0
 public FileSystemWidgetDataContext(string contextString)
     : base(contextString)
 {
     _widgetDataGateway = new FileGateway<WidgetData>(base.ContextString, new WidgetDataMapper());
     _widgetGateway = new DirectoryGateway<Widget>(base.ContextString, new WidgetMapper());
 }
コード例 #3
0
 public FilesController(ApplicationDbContext context)
 {
     dataGateway = new FileGateway(context);
 }
コード例 #4
0
 private List<WidgetData> LoadWidgetData(Widget widget)
 {
     FileGateway<WidgetData> widgetDataGateway =
         new FileGateway<WidgetData>(base.ContextString +"\\"+ widget.Name, new WidgetDataMapper());
     return widgetDataGateway.GetAll().ToList();
 }