From de89eec55593de07e71233cd04059e19199edef0 Mon Sep 17 00:00:00 2001 From: Andreas Zweili Date: Thu, 23 Aug 2018 21:37:24 +0200 Subject: [PATCH] fuck ICollection and the like... --- Plattform/Plattform/DB/AirlineDB.cs | 2 +- Plattform/Plattform/DB/AirportDB.cs | 2 +- Plattform/Plattform/DB/AvailabiltyDB.cs | 2 +- Plattform/Plattform/DB/CityDB.cs | 2 +- Plattform/Plattform/DB/FlightDB.cs | 2 +- Plattform/Plattform/DB/GenderDB.cs | 2 +- Plattform/Plattform/DB/HotelDB.cs | 2 +- Plattform/Plattform/DB/RoomDB.cs | 2 +- Plattform/Plattform/DB/RoomTypeDB.cs | 2 +- Plattform/Plattform/DB/SalutationDB.cs | 2 +- Plattform/Plattform/DB/SpecialOfferDB.cs | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Plattform/Plattform/DB/AirlineDB.cs b/Plattform/Plattform/DB/AirlineDB.cs index e4f83f2..103d767 100644 --- a/Plattform/Plattform/DB/AirlineDB.cs +++ b/Plattform/Plattform/DB/AirlineDB.cs @@ -7,7 +7,7 @@ namespace Plattform.DB { public class AirlineDB { - public ICollection GetAllAirlines() + public List GetAllAirlines() { using (Context ctx = new Context()) { diff --git a/Plattform/Plattform/DB/AirportDB.cs b/Plattform/Plattform/DB/AirportDB.cs index a866e49..96e3f10 100644 --- a/Plattform/Plattform/DB/AirportDB.cs +++ b/Plattform/Plattform/DB/AirportDB.cs @@ -7,7 +7,7 @@ namespace Plattform.DB { public class AirportDB { - public ICollection GetAllAirports() + public List GetAllAirports() { using (Context ctx = new Context()) { diff --git a/Plattform/Plattform/DB/AvailabiltyDB.cs b/Plattform/Plattform/DB/AvailabiltyDB.cs index e8a56f3..8d43bf9 100644 --- a/Plattform/Plattform/DB/AvailabiltyDB.cs +++ b/Plattform/Plattform/DB/AvailabiltyDB.cs @@ -8,7 +8,7 @@ namespace Plattform.DB { public class AvailabilityDB { - public ICollection GetAllAvailabilities() + public List GetAllAvailabilities() { using (Context ctx = new Context()) { diff --git a/Plattform/Plattform/DB/CityDB.cs b/Plattform/Plattform/DB/CityDB.cs index 9288227..93c9dec 100644 --- a/Plattform/Plattform/DB/CityDB.cs +++ b/Plattform/Plattform/DB/CityDB.cs @@ -8,7 +8,7 @@ namespace Plattform.DB { public class CityDB { - public ICollection GetAllCities() + public List GetAllCities() { using (Context ctx = new Context()) { diff --git a/Plattform/Plattform/DB/FlightDB.cs b/Plattform/Plattform/DB/FlightDB.cs index 35c9e26..f444b66 100644 --- a/Plattform/Plattform/DB/FlightDB.cs +++ b/Plattform/Plattform/DB/FlightDB.cs @@ -7,7 +7,7 @@ namespace Plattform.DB { public class FlightDB { - public ICollection GetAllFlights() + public List GetAllFlights() { using (Context ctx = new Context()) { diff --git a/Plattform/Plattform/DB/GenderDB.cs b/Plattform/Plattform/DB/GenderDB.cs index 2c25547..58f6d32 100644 --- a/Plattform/Plattform/DB/GenderDB.cs +++ b/Plattform/Plattform/DB/GenderDB.cs @@ -7,7 +7,7 @@ namespace Plattform.DB { public class GenderDB { - public ICollection GetAllGenders() + public List GetAllGenders() { using (Context ctx = new Context()) { diff --git a/Plattform/Plattform/DB/HotelDB.cs b/Plattform/Plattform/DB/HotelDB.cs index f95281f..741e9a8 100644 --- a/Plattform/Plattform/DB/HotelDB.cs +++ b/Plattform/Plattform/DB/HotelDB.cs @@ -8,7 +8,7 @@ namespace Plattform.DB { public class HotelDB { - public ICollection GetAllHotels() + public List GetAllHotels() { using (Context ctx = new Context()) { diff --git a/Plattform/Plattform/DB/RoomDB.cs b/Plattform/Plattform/DB/RoomDB.cs index 306e5f9..06c803c 100644 --- a/Plattform/Plattform/DB/RoomDB.cs +++ b/Plattform/Plattform/DB/RoomDB.cs @@ -7,7 +7,7 @@ namespace Plattform.DB { public class RoomDB { - public ICollection GetAllRooms() + public List GetAllRooms() { using (Context ctx = new Context()) { diff --git a/Plattform/Plattform/DB/RoomTypeDB.cs b/Plattform/Plattform/DB/RoomTypeDB.cs index 6c3d8ea..904160c 100644 --- a/Plattform/Plattform/DB/RoomTypeDB.cs +++ b/Plattform/Plattform/DB/RoomTypeDB.cs @@ -8,7 +8,7 @@ namespace Plattform.DB { public class RoomTypeDB { - public ICollection GetAllRoomTypes() + public List GetAllRoomTypes() { using (Context ctx = new Context()) { diff --git a/Plattform/Plattform/DB/SalutationDB.cs b/Plattform/Plattform/DB/SalutationDB.cs index 58358c7..a71bb6a 100644 --- a/Plattform/Plattform/DB/SalutationDB.cs +++ b/Plattform/Plattform/DB/SalutationDB.cs @@ -7,7 +7,7 @@ namespace Plattform.DB { public class SalutationDB { - public ICollection GetAllSalutations() + public List GetAllSalutations() { using (Context ctx = new Context()) { diff --git a/Plattform/Plattform/DB/SpecialOfferDB.cs b/Plattform/Plattform/DB/SpecialOfferDB.cs index a132fda..8d421f8 100644 --- a/Plattform/Plattform/DB/SpecialOfferDB.cs +++ b/Plattform/Plattform/DB/SpecialOfferDB.cs @@ -7,7 +7,7 @@ namespace Plattform.DB { public class SpecialOfferDB { - public ICollection GetAllSpecialOffers() + public List GetAllSpecialOffers() { using (Context ctx = new Context()) {