public ActionResult NewInterviewInfo([FromBody] Interview data)
        {
            ProductRepository.AddInterviewInfo(data);

            return(Json("success"));
        }