public ActionResult ModApi(string symbol = "msft")
        {
            var model = new ModApiModel();
            model.Init();
            model.Load();

            return View(model);
        }
Exemple #2
0
 public AllProjectsModel()
 {
     ModApi = new ModApiModel() { IsAllProjects = true };
     Website = new WebsiteModel() { IsAllProjects = true };
 }