Exemple #1
0
 public Place(int placeId, string name, string description, User owner, Position position)
 {
     PlaceId = placeId;
     Name = name;
     Owner = owner;
     Description = description;
     Position = position;
 }
Exemple #2
0
 public Sting(int stingId, User user, Place place, DateTime timestamp, string description, double price)
 {
     StingId = stingId;
     User = user;
     Place = place;
     Timestamp = timestamp;
     Description = description;
     Price = price;
 }