예제 #1
0
        public async Task <IHttpActionResult> Download(string path)
        {
            try
            {
                var response = ResponseMessage(await _logicEm.Download(path));

                return(response);
            }
            catch (Exception e)
            {
                Log.Error("DownloadStampa", e);
                return(ErrorHandler(e));
            }
        }