Exemple #1
0
 public Stats Handle(ZES.Interfaces.IEvent e, Stats state)
 {
     return(Handle(e as Chronos.Accounts.Events.AccountCreated, state));;
 }
 public ContractStats Handle(ZES.Interfaces.IEvent e, ContractStats state)
 {
     return(Handle((dynamic)e, state));
 }
 public TransactionList Handle(ZES.Interfaces.IEvent e, TransactionList state)
 {
     return(Handle(e as Chronos.Accounts.Events.TransactionAdded, state));;
 }
 public CoinInfo Handle(ZES.Interfaces.IEvent e, CoinInfo state)
 {
     return(Handle(e as Chronos.Coins.Events.CoinCreated, state));;
 }
 public AccountStatsState Handle(ZES.Interfaces.IEvent e, AccountStatsState state)
 {
     return(Handle((dynamic)e, state));;
 }
Exemple #6
0
 public TotalRecord Handle(ZES.Interfaces.IEvent e, TotalRecord state)
 {
     Handle(e as ZES.Tests.Domain.Events.RootRecorded, state);;
     return(state);
 }
 public WalletInfo Handle(ZES.Interfaces.IEvent e, WalletInfo state)
 {
     return(Handle((dynamic)e, state));
 }
 public AssetPairInfo Handle(ZES.Interfaces.IEvent e, AssetPairInfo state)
 {
     return(Handle((dynamic)e, state));
 }
Exemple #9
0
 public SingleAssetPrice Handle(ZES.Interfaces.IEvent e, SingleAssetPrice state)
 {
     return(Handle((dynamic)e, state));;
 }
 public TransactionInfo Handle(ZES.Interfaces.IEvent e, TransactionInfo state)
 {
     return(Handle((dynamic)e, state));
 }
Exemple #11
0
 public ItemInfo Handle(ZES.Interfaces.IEvent e, ItemInfo state)
 {
     Handle((dynamic)e, state);
     return(state);
 }
Exemple #12
0
 public EnhancementResults Handle(ZES.Interfaces.IEvent e, EnhancementResults state)
 {
     Handle((dynamic)e, state);
     return(state);
 }
 public AssetPairsInfo Handle(ZES.Interfaces.IEvent e, AssetPairsInfo state)
 {
     return(Handle(e as Chronos.Core.Events.AssetPairRegistered, state));
 }