diff --git a/Plattform/Plattform/Default.aspx b/Plattform/Plattform/Default.aspx index 9aff136..585dfc1 100644 --- a/Plattform/Plattform/Default.aspx +++ b/Plattform/Plattform/Default.aspx @@ -12,6 +12,7 @@
+ Add a room type
RoomType
@@ -20,6 +21,7 @@
Hotel
+ Add a hotel

Availability
diff --git a/Plattform/Plattform/FormHotel.aspx b/Plattform/Plattform/FormHotel.aspx new file mode 100644 index 0000000..4719712 --- /dev/null +++ b/Plattform/Plattform/FormHotel.aspx @@ -0,0 +1,23 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="FormHotel.aspx.cs" Inherits="Plattform.FormHotel" %> + + + + + + + + +
+

Add a new hotel

+
Name
+ +
Zip Code
+ +
City
+ +
+
+ + + + diff --git a/Plattform/Plattform/FormHotel.aspx.cs b/Plattform/Plattform/FormHotel.aspx.cs new file mode 100644 index 0000000..46e6897 --- /dev/null +++ b/Plattform/Plattform/FormHotel.aspx.cs @@ -0,0 +1,37 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace Plattform +{ + public partial class FormHotel : System.Web.UI.Page + { + protected void Page_Load(object sender, EventArgs e) + { + + } + + protected void TextBoxHotelName_TextChanged(object sender, EventArgs e) + { + + } + + protected void TextBoxZipCode_TextChanged(object sender, EventArgs e) + { + + } + + protected void TextBoxCityName_TextChanged(object sender, EventArgs e) + { + + } + + protected void ButtonAddHotel_Click(object sender, EventArgs e) + { + + } + } +} \ No newline at end of file diff --git a/Plattform/Plattform/FormHotel.aspx.designer.cs b/Plattform/Plattform/FormHotel.aspx.designer.cs new file mode 100644 index 0000000..8d2a880 --- /dev/null +++ b/Plattform/Plattform/FormHotel.aspx.designer.cs @@ -0,0 +1,60 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Plattform { + + + public partial class FormHotel { + + /// + /// form1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.HtmlControls.HtmlForm form1; + + /// + /// TextBoxHotelName control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.TextBox TextBoxHotelName; + + /// + /// TextBoxZipCode control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.TextBox TextBoxZipCode; + + /// + /// TextBoxCityName control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.TextBox TextBoxCityName; + + /// + /// ButtonAddHotel control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Button ButtonAddHotel; + } +} diff --git a/Plattform/Plattform/FormRoomType.aspx b/Plattform/Plattform/FormRoomType.aspx new file mode 100644 index 0000000..813c531 --- /dev/null +++ b/Plattform/Plattform/FormRoomType.aspx @@ -0,0 +1,23 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="FormRoomType.aspx.cs" Inherits="Plattform.FormRoomType" %> + + + + + + + + +
+

Add a new room type

+
Name
+ +
Capacity
+ +
Intentory
+ +
+
+ + + + diff --git a/Plattform/Plattform/FormRoomType.aspx.cs b/Plattform/Plattform/FormRoomType.aspx.cs new file mode 100644 index 0000000..9225016 --- /dev/null +++ b/Plattform/Plattform/FormRoomType.aspx.cs @@ -0,0 +1,37 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace Plattform +{ + public partial class FormRoomType: System.Web.UI.Page + { + protected void Page_Load(object sender, EventArgs e) + { + + } + + protected void TextBoxRoomType_TextChanged(object sender, EventArgs e) + { + + } + + protected void TextBoxCapacity_TextChanged(object sender, EventArgs e) + { + + } + + protected void TextBoxInventory_TextChanged(object sender, EventArgs e) + { + + } + + protected void ButtonAddRoomType_Click(object sender, EventArgs e) + { + + } + } +} \ No newline at end of file diff --git a/Plattform/Plattform/FormRoomType.aspx.designer.cs b/Plattform/Plattform/FormRoomType.aspx.designer.cs new file mode 100644 index 0000000..3281893 --- /dev/null +++ b/Plattform/Plattform/FormRoomType.aspx.designer.cs @@ -0,0 +1,60 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Plattform { + + + public partial class FormRoomType { + + /// + /// form1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.HtmlControls.HtmlForm form1; + + /// + /// TextBoxRoomType control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.TextBox TextBoxRoomType; + + /// + /// TextBoxCapacity control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.TextBox TextBoxCapacity; + + /// + /// TextBoxInventory control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.TextBox TextBoxInventory; + + /// + /// ButtonAddRoomType control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Button ButtonAddRoomType; + } +} diff --git a/Plattform/Plattform/Plattform.csproj b/Plattform/Plattform/Plattform.csproj index 658b4ab..849186f 100644 --- a/Plattform/Plattform/Plattform.csproj +++ b/Plattform/Plattform/Plattform.csproj @@ -109,7 +109,9 @@ + + @@ -143,6 +145,13 @@ Default.aspx + + FormHotel.aspx + ASPXCodeBehind + + + FormHotel.aspx + @@ -160,6 +169,13 @@ PlattformService.svc + + FormRoomType.aspx + ASPXCodeBehind + + + FormRoomType.aspx +