Пример #1
0
 public Stats Handle(ZES.Interfaces.IEvent e, Stats state)
 {
     return(Handle(e as Chronos.Accounts.Events.AccountCreated, state));;
 }
Пример #2
0
 public ContractStats Handle(ZES.Interfaces.IEvent e, ContractStats state)
 {
     return(Handle((dynamic)e, state));
 }
Пример #3
0
 public TransactionList Handle(ZES.Interfaces.IEvent e, TransactionList state)
 {
     return(Handle(e as Chronos.Accounts.Events.TransactionAdded, state));;
 }
Пример #4
0
 public CoinInfo Handle(ZES.Interfaces.IEvent e, CoinInfo state)
 {
     return(Handle(e as Chronos.Coins.Events.CoinCreated, state));;
 }
Пример #5
0
 public AccountStatsState Handle(ZES.Interfaces.IEvent e, AccountStatsState state)
 {
     return(Handle((dynamic)e, state));;
 }
Пример #6
0
 public TotalRecord Handle(ZES.Interfaces.IEvent e, TotalRecord state)
 {
     Handle(e as ZES.Tests.Domain.Events.RootRecorded, state);;
     return(state);
 }
Пример #7
0
 public WalletInfo Handle(ZES.Interfaces.IEvent e, WalletInfo state)
 {
     return(Handle((dynamic)e, state));
 }
Пример #8
0
 public AssetPairInfo Handle(ZES.Interfaces.IEvent e, AssetPairInfo state)
 {
     return(Handle((dynamic)e, state));
 }
Пример #9
0
 public SingleAssetPrice Handle(ZES.Interfaces.IEvent e, SingleAssetPrice state)
 {
     return(Handle((dynamic)e, state));;
 }
Пример #10
0
 public TransactionInfo Handle(ZES.Interfaces.IEvent e, TransactionInfo state)
 {
     return(Handle((dynamic)e, state));
 }
Пример #11
0
 public ItemInfo Handle(ZES.Interfaces.IEvent e, ItemInfo state)
 {
     Handle((dynamic)e, state);
     return(state);
 }
Пример #12
0
 public EnhancementResults Handle(ZES.Interfaces.IEvent e, EnhancementResults state)
 {
     Handle((dynamic)e, state);
     return(state);
 }
Пример #13
0
 public AssetPairsInfo Handle(ZES.Interfaces.IEvent e, AssetPairsInfo state)
 {
     return(Handle(e as Chronos.Core.Events.AssetPairRegistered, state));
 }