public ActionResult UpdateInfo(company_info model)
 {
     GrubDBDataContext GrubDB = new GrubDBDataContext();
     GrubDB.update_company_info(model.id, model.delivery, model.location, model.name, model.orders, model.owner_first, model.owner_last, model.phone_number, model.point_of_contact_email, model.point_of_contact_phone, model.payment_status, model.username);
     return RedirectToAction("index", "Home");
 }