Пример #1
0
 public Task <bool> CreateAccountAsync(IUser owner, string name, IEconomyCurrency currency, out IEconomyAccount account)
 {
     throw new NotImplementedException();
 }
Пример #2
0
 public Task <bool> DeleteAccountAsync(IEconomyAccount account)
 {
     throw new NotImplementedException();
 }
Пример #3
0
 public Task SetBalanceAsync(IEconomyAccount account, decimal amount)
 {
     throw new NotImplementedException();
 }
Пример #4
0
 public Task <bool> SupportsNegativeBalanceAsync(IEconomyAccount account)
 {
     throw new NotImplementedException();
 }
Пример #5
0
 public Task <bool> TransferAsync(IEconomyAccount source, IEconomyAccount target, decimal amount, string reason = null)
 {
     throw new NotImplementedException();
 }
Пример #6
0
 public Task <bool> RemoveBalanceAsync(IEconomyAccount account, decimal amount, string reason = null)
 {
     throw new NotImplementedException();
 }
Пример #7
0
 public bool CreateAccount(IIdentity owner, string name, IEconomyCurrency currency, out IEconomyAccount account) => throw new NotSupportedException("You may not create vanilla accounts.");
Пример #8
0
 public bool DeleteAccount(IEconomyAccount account) => throw new NotSupportedException("You may not delete vanilla accounts.");
Пример #9
0
 public bool SupportsNegativeBalance(IEconomyAccount account) => false;
Пример #10
0
 public void SetBalance(IEconomyAccount account, decimal amount)
 {
     throw new NotImplementedException();
 }
Пример #11
0
 public bool RemoveBalance(IEconomyAccount account, decimal amount, string reason = null) => throw new NotImplementedException();
Пример #12
0
 public void AddBalance(IEconomyAccount account, decimal amount, string reason = null)
 {
     throw new NotImplementedException();
 }
Пример #13
0
 public bool Transfer(IEconomyAccount source, IEconomyAccount target, decimal amount, string reason = null) => throw new NotImplementedException();