Ejemplo n.º 1
0
 public HomeModule()
 {
     Get["/"] = _ => {
         return(View["index.cshtml"]);
     };
     Post["/"] = _ => {
         PPG.ClearAll();
         PPG           ppg      = new PPG(int.Parse(Request.Form["userNumber"]));
         List <string> userList = ppg.GetAll();
         return(View["index.cshtml", userList]);
     };
 }
Ejemplo n.º 2
0
 public void Dispose()
 {
     PPG.ClearAll();
 }