1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-06-02 15:11:45 +02:00
GiantsTools/Giants.Services/Services/UpdaterService.cs

22 lines
549 B
C#
Raw Normal View History

using System.Threading.Tasks;
namespace Giants.Services
{
public class UpdaterService : IUpdaterService
{
private readonly IUpdaterStore updaterStore;
public UpdaterService(IUpdaterStore updaterStore)
{
this.updaterStore = updaterStore;
}
public async Task<VersionInfo> GetVersionInfo(string gameName)
{
ArgumentUtility.CheckStringForNullOrEmpty(gameName, nameof(gameName));
return await this.updaterStore.GetVersionInfo(gameName);
}
}
}