add missing using statements

This commit is contained in:
Andreas Zweili 2018-08-30 21:17:16 +02:00
parent db19ea6c97
commit 4f7bd329e3
4 changed files with 5 additions and 2 deletions

View File

@ -6,6 +6,7 @@ using System.Web.UI;
using System.Web.UI.WebControls;
using Plattform.DB;
using Plattform.Models;
using Plattform.AirlineService;
namespace Plattform

View File

@ -1,5 +1,6 @@
using System.Collections.Generic;
using Plattform.Models;
using Plattform.AirlineService;
namespace Plattform.Helper
{

View File

@ -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; }
}
}

View File

@ -1,5 +1,6 @@
using System.Collections.Generic;
using System.Runtime.Serialization;
using Plattform.AirlineService;
namespace Plattform.Models
{