Пример #1
0
        public WebshopForm(LoginForm loginForm, Customer customer)
        {
            this.client    = new WebshopServiceClient();
            this.loginForm = loginForm;
            this.customer  = customer;

            InitializeComponent();

            // Set title
            this.Name += $" - logged in as {customer.Username}";

            // Set money
            moneyLabel.Text += customer.Credit;

            // Set shop inventory
            RefreshAll();
        }
Пример #2
0
 public LoginForm()
 {
     client = new WebshopServiceClient();
     InitializeComponent();
 }