示例#1
0
        public IpGeoLocationProxy()
        {
            var matchingEngineServiceUri = new Uri("fabric:/IpGeoLocation/IpGeoLocationActorService");
            var actorId = ActorId.CreateRandom();

            _actorProxy = ActorProxy.Create <IIpGeoLocation>(actorId, matchingEngineServiceUri);
        }
示例#2
0
 public UserInputService(AppDbContext dbContext, IIpGeoLocation locator)
 {
     DbContext = dbContext;
     Locator   = locator;
 }