Files
LeafWeb/Web/Services/DownloadUrlService.cs
T
2016-05-06 11:19:01 -04:00

22 lines
468 B
C#

using System.Configuration;
using LeafWeb.Core.Entities;
namespace LeafWeb.Web.Services
{
public class DownloadUrlService
{
private readonly string _downloadUrl;
public DownloadUrlService()
{
_downloadUrl =
ConfigurationManager.AppSettings["LeafWebUrl"]
+ ConfigurationManager.AppSettings["ResultsDownloadPath"];
}
public string GetDownloadUrl(LeafInput leafInput)
{
return string.Format(_downloadUrl, leafInput.UniqueToken);
}
}
}