From 4f7bd329e33a5d0e3c19a41ca98e00d031a2660e Mon Sep 17 00:00:00 2001 From: Andreas Zweili Date: Thu, 30 Aug 2018 21:17:16 +0200 Subject: [PATCH] add missing using statements --- Plattform/Plattform/FormHotel.aspx.cs | 1 + Plattform/Plattform/Helper/GenerateData.cs | 1 + Plattform/Plattform/Models/Hotel.cs | 4 ++-- Plattform/Plattform/Models/Person.cs | 1 + 4 files changed, 5 insertions(+), 2 deletions(-) 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 {