Example #1
0
 private RemoteDispatcher(string myself, IIoC ioc)
 {
     _myself = myself;
     _counters = new Counters();
     _log = ioc.Resolve<ILogFile>();
     _json = ioc.Resolve<IJsonEngine>();
     _rrepo = ioc.Resolve<IRemoteRepo>();
     _messenger = ioc.Resolve<IMessengerEngine>();
 }
Example #2
0
 public static IRemoteRepo New(IRemoteRepo impl)
 {
     return new SyncRemoteRepo(impl);
 }
Example #3
0
 private SyncRemoteRepo(IRemoteRepo impl)
 {
     _impl = impl;
 }