refactor LocationService

This commit is contained in:
2011-04-04 18:22:03 +03:00
parent 2de2c2485e
commit f79ee0adc2
16 changed files with 236 additions and 78 deletions
@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Device.Location;
using MyFriendsAround.WP7.Model;
namespace MyFriendsAround.WP7.Service
{
public interface ILocationService
{
event EventHandler<LocationChangedEventArgs> LocationChanged;
event EventHandler<LocationStatusEventArgs> StatusChanged;
Location CurrentLocation { get; }
Location GetCurrentLocation();
void Start();
void Stop();
}
}