public ActionResult TestPushJobToAll()
 {
     PushAll p = new PushAll();
     p.SendAdvertToAllAndroid("job");
     return RedirectToAction("About", "Home");
 }
 public ActionResult TestPushToAll()
 {
     PushAll p = new PushAll();
     p.SendMessageToAllAndroid("Hei alle sammen");
     return RedirectToAction("About", "Home");
 }