public IHttpActionResult addIndustry(Industry c)
        {
            // Industry c1 = new Industry { IndustryId=1, Name="ztt" };
            int changeLine = IndustryDao.addIndustry(c);

            return(Ok(changeLine));
        }