예제 #1
0
파일: Reference.cs 프로젝트: JohanOtto/Nova
 public void AddToLocations(Location location)
 {
     base.AddObject("Locations", location);
 }
예제 #2
0
파일: Customer.cs 프로젝트: JohanOtto/Nova
 // Method does not fire NotifyPropertyChanged
 public void SetLocationSilent(Location l)
 {
     this._Location = l;
     this._LocationId = l != null ? l.Id : 0;
 }
예제 #3
0
파일: Reference.cs 프로젝트: JohanOtto/Nova
 public static Location CreateLocation(string city, string state, string country, int ID)
 {
     Location location = new Location();
     location.City = city;
     location.State = state;
     location.Country = country;
     location.Id = ID;
     return location;
 }