public ActionResult GetqrCode(string msd)
 {
     byte[] bytes = QRCodeHelper.CreateBitMap(msd);
     return(File(bytes, @"image/jpeg"));
 }