public JsonResult getAllAllergens()
 {
     SpeedyChefDataContext SCDC = new SpeedyChefDataContext();
     var json = new JsonResult();
     json.Data = SCDC.GET_Allergens().ToList();
     json.JsonRequestBehavior = JsonRequestBehavior.AllowGet;
     return json;
 }
        public JsonResult getAllAllergens()
        {
            SpeedyChefDataContext SCDC = new SpeedyChefDataContext();
            var json = new JsonResult();

            json.Data = SCDC.GET_Allergens().ToList();
            json.JsonRequestBehavior = JsonRequestBehavior.AllowGet;
            return(json);
        }