oop_NFS_Andreas/Plattform/Plattform/Default.aspx.cs

34 lines
893 B
C#
Raw Normal View History

2018-08-19 14:31:58 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using Plattform.Models;
using Plattform.DB;
using Plattform;
namespace Plattform
{
2018-08-23 21:22:04 +02:00
public partial class Default: System.Web.UI.Page
2018-08-19 14:31:58 +02:00
{
public Plattform.AirlineService.AirlineServiceClient service = new Plattform.AirlineService.AirlineServiceClient();
protected void Page_Load(object sender, EventArgs e)
{
RoomTypeDB typeDB = new RoomTypeDB();
var types = typeDB.GetAllRoomTypes();
DropDownRoomType.Items.Add(types.ToString());
}
protected void ButtonGetFlights_Click(object sender, EventArgs e)
{
FlightDB dataccess = new FlightDB();
}
protected void ButtonAddRoom_Click(object sender, EventArgs e)
{
}
}
}