diff --git a/Plattform/Plattform/FormHotel.aspx.cs b/Plattform/Plattform/FormHotel.aspx.cs index e6ecfe2..a9fddeb 100644 --- a/Plattform/Plattform/FormHotel.aspx.cs +++ b/Plattform/Plattform/FormHotel.aspx.cs @@ -6,6 +6,7 @@ using System.Web.UI; using System.Web.UI.WebControls; using Plattform.DB; using Plattform.Models; +using Plattform.AirlineService; namespace Plattform diff --git a/Plattform/Plattform/Helper/GenerateData.cs b/Plattform/Plattform/Helper/GenerateData.cs index 654feb0..bcc7acb 100644 --- a/Plattform/Plattform/Helper/GenerateData.cs +++ b/Plattform/Plattform/Helper/GenerateData.cs @@ -1,5 +1,6 @@ using System.Collections.Generic; using Plattform.Models; +using Plattform.AirlineService; namespace Plattform.Helper { diff --git a/Plattform/Plattform/Models/Hotel.cs b/Plattform/Plattform/Models/Hotel.cs index 62b39d3..24b5b3c 100644 --- a/Plattform/Plattform/Models/Hotel.cs +++ b/Plattform/Plattform/Models/Hotel.cs @@ -1,5 +1,5 @@ using System.Runtime.Serialization; -using Plattform; +using Plattform.AirlineService; namespace Plattform.Models { @@ -11,6 +11,6 @@ namespace Plattform.Models [DataMember] public string Name { get; set; } [DataMember] - public virtual AirlineService.City City { get; set; } + public virtual City City { get; set; } } } diff --git a/Plattform/Plattform/Models/Person.cs b/Plattform/Plattform/Models/Person.cs index d514f4c..aab06cb 100644 --- a/Plattform/Plattform/Models/Person.cs +++ b/Plattform/Plattform/Models/Person.cs @@ -1,5 +1,6 @@ using System.Collections.Generic; using System.Runtime.Serialization; +using Plattform.AirlineService; namespace Plattform.Models {