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,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using MyFriendsAround.WP7.Model;
namespace MyFriendsAround.WP7.Service
{
public class LocationChangedEventArgs: EventArgs
{
public Location Location { get; private set; }
public LocationChangedEventArgs(Location location)
{
Location = location;
}
}
}