Exemplo n.º 1
0
 public void ExistPlace()
 {
     PlaceRepository rep = new PlaceRepository();
     Place place = DataGenerator.GeneratePlace();
     rep.Exist(place.idPlace);
 }
Exemplo n.º 2
0
 public void AddPlace()
 {
     PlaceRepository rep = new PlaceRepository();
     Place place = DataGenerator.GeneratePlace();
     rep.Add(place);
 }