Example #1
0
 public string Qrcode([FromBody] ProductImage image, [FromServices] IHostingEnvironment hosting)
 {
     try
     {
         var name = image.SaveQrcode(hosting);
         return(name);
     }
     catch (Exception e)
     {
         UtilHelper.Log(e.ToString());
         throw;
     }
 }