Example #1
0
 static void Main()
 {
     Application.EnableVisualStyles();
     Application.SetCompatibleTextRenderingDefault(false);
     Model.Hotel hotelObject = new Model.Hotel();
     Application.Run(new Form1(hotelObject));
 }
Example #2
0
 public Form1(HotelProject.Model.Hotel h)
 {
     InitializeComponent();
     hotelObject = h;
 }