Ejemplo n.º 1
0
 public FoodForm(FoodModel foodDetails, String opertions)
 {
     InitializeComponent();
     SkinClass.SetSkiner(this);
     this.formActions = opertions;
     this.loadFormValues(foodDetails, opertions);
 }
Ejemplo n.º 2
0
 public Login(string userName, string password)
 {
     InitializeComponent();
     SkinClass.SetSkiner(this);
     this.username.Text = userName;
     this.password.Text = password;
 }
Ejemplo n.º 3
0
 public HotelTabelForm(HotelTableModel hotelModelDetails, String operations)
 {
     InitializeComponent();
     SkinClass.SetSkiner(this);
     this.formActions = operations;
     this.loadFormValues(hotelModelDetails, operations);
 }
Ejemplo n.º 4
0
 public CustomerForm(CustomerModel customerDetails, String opertions)
 {
     InitializeComponent();
     SkinClass.SetSkiner(this);
     this.formActions = opertions;
     this.loadFormValues(customerDetails, opertions);
 }
Ejemplo n.º 5
0
 public AddFood(HotelTableModel hotelTableModel, LocalInvoiceModel localInvoiceModel)
 {
     InitializeComponent();
     SkinClass.SetSkiner(this);
     this.hotelTableModel   = hotelTableModel;
     this.localInvoiceModel = localInvoiceModel;
     this.loadFoodComboBox();
 }
Ejemplo n.º 6
0
 public HotelTableInvoiceForm(LocalInvoiceModel localInvoiceModel)
 {
     InitializeComponent();
     SkinClass.SetSkiner(this);
     this.tempLocalInvoiceModel = localInvoiceModel;
     this.setCustomerDetails();
     this.gridViewButtonLoad();
 }
Ejemplo n.º 7
0
 public UpdateProfile(ProfileModel profile)
 {
     InitializeComponent();
     SkinClass.SetSkiner(this);
     this.userProfile      = profile;
     this.profileType.Text = profile.type;
     this.profileName.Text = profile.profileName;
 }
Ejemplo n.º 8
0
 public BookTable(HotelTableModel hotelModelDetails)
 {
     InitializeComponent();
     SkinClass.SetSkiner(this);
     this.tempHotelModel = hotelModelDetails;
 }
Ejemplo n.º 9
0
 public BookTable()
 {
     InitializeComponent();
     SkinClass.SetSkiner(this);
 }
Ejemplo n.º 10
0
 public CustomerForm()
 {
     InitializeComponent();
     SkinClass.SetSkiner(this);
 }
Ejemplo n.º 11
0
 public CreateProfile()
 {
     InitializeComponent();
     SkinClass.SetSkiner(this);
 }
Ejemplo n.º 12
0
 public Regsiter()
 {
     InitializeComponent();
     SkinClass.SetSkiner(this);
 }
Ejemplo n.º 13
0
 public Login()
 {
     InitializeComponent();
     SkinClass.SetSkiner(this);
 }
Ejemplo n.º 14
0
 public FoodForm()
 {
     InitializeComponent();
     SkinClass.SetSkiner(this);
 }
Ejemplo n.º 15
0
 public HotelTableInvoiceForm()
 {
     InitializeComponent();
     SkinClass.SetSkiner(this);
     this.gridViewButtonLoad();
 }
Ejemplo n.º 16
0
		public cRemote() {
			SkinClass sc = new SkinClass();
			InitializeComponent();
			sc.Skin(this);
			MaximumSize = new Size(Screen.PrimaryScreen.WorkingArea.Width, Screen.PrimaryScreen.WorkingArea.Height);

			button_win_state_Click(null, null);
		}
Ejemplo n.º 17
0
 public VerifyUser()
 {
     InitializeComponent();
     SkinClass.SetSkiner(this);
 }
Ejemplo n.º 18
0
 public AddFood()
 {
     InitializeComponent();
     SkinClass.SetSkiner(this);
     this.loadFoodComboBox();
 }
Ejemplo n.º 19
0
 public HotelTabelForm()
 {
     InitializeComponent();
     SkinClass.SetSkiner(this);
 }