예제 #1
0
 public UserService(IRepository <User> userRepository, IRepository <Location> locationRepository, ICountryReverseGeocodeService reverseLocationService, IRoleService roleService)
 {
     this._userRepository         = userRepository;
     this._locationRepository     = locationRepository;
     this._reverseLocationService = reverseLocationService;
     this._roleService            = roleService;
 }
예제 #2
0
        public MainViewModel()
        {
            GeocodeCommand  = new DelegateCommand(Geocode);
            _geocodeService = new CountryReverseGeocodeService();

            Latitude  = "35.227575";
            Longitude = "65.167173";
        }
 public MainViewModel()
 {
     GeocodeCommand  = new DelegateCommand(Geocode);
     _geocodeService = new CountryReverseGeocodeService();
 }