mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 15:40:18 -04:00
39 lines
1.2 KiB
C#
39 lines
1.2 KiB
C#
using System.Collections.ObjectModel;
|
|
using System.Globalization;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Windows.ApplicationModel.Store;
|
|
using ModernKeePass.Common;
|
|
using ModernKeePass.Interfaces;
|
|
using ModernKeePass.Services;
|
|
|
|
namespace ModernKeePass.ViewModels
|
|
{
|
|
public class DonateVm: NotifyPropertyChangedBase
|
|
{
|
|
public ObservableCollection<ProductListing> Donations { get; }
|
|
|
|
public ProductListing SelectedItem
|
|
{
|
|
get { return _selectedItem; }
|
|
set { SetProperty(ref _selectedItem, value); }
|
|
}
|
|
|
|
private readonly ILicenseService _license;
|
|
private ProductListing _selectedItem;
|
|
|
|
public DonateVm() : this (new LicenseService()) { }
|
|
|
|
public DonateVm(ILicenseService license)
|
|
{
|
|
_license = license;
|
|
Donations = new ObservableCollection<ProductListing>(_license.Products.Values.OrderBy(p => /*decimal.Parse(*/p.FormattedPrice/*, NumberStyles.Currency | NumberStyles.AllowDecimalPoint)*/));
|
|
}
|
|
|
|
public async Task<int> Purchase()
|
|
{
|
|
return await _license.Purchase(SelectedItem.ProductId);
|
|
}
|
|
}
|
|
}
|