public void CreateLocation(Location location)
 {
     locationDAO.CreateLocation(location);
 }
 public void UpdateLocation(Location location)
 {
     throw new NotImplementedException();
 }
Exemple #3
0
 public void UpdateLocation(Location location)
 {
     context.LocationTypes.Attach(location.LocationType);
 }