Esempio n. 1
0
 public CustomerHomePage(MainLogIN mainLogIN, string Email, string Password)
 {
     InitializeComponent();
     this.mainLogIN = mainLogIN;
     this.Email     = Email;
     this.Password  = Password;
 }
Esempio n. 2
0
 public SellerHomePage(MainLogIN mainLogIN, string email, string password)
 {
     InitializeComponent();
     this.mainLogIN = mainLogIN;
     this.email     = email;
     this.password  = password;
 }
Esempio n. 3
0
 public NewRegister(MainLogIN mainLogIN, ICustomerService customerService)
 {
     this.mainLogIN       = mainLogIN;
     this.customerService = customerService;
     InitializeComponent();
 }
Esempio n. 4
0
 public NewRegister(MainLogIN mainLogIN, ISellerService sellerService)
 {
     this.mainLogIN     = mainLogIN;
     this.sellerService = sellerService;
     InitializeComponent();
 }
Esempio n. 5
0
 public ForgotPassword(MainLogIN mainLogIN, ICustomerService customerService)
 {
     InitializeComponent();
     this.mainLogIN       = mainLogIN;
     this.customerService = customerService;
 }
Esempio n. 6
0
 public ForgotPassword(MainLogIN mainLogIN, ISellerService sellerService)
 {
     InitializeComponent();
     this.mainLogIN     = mainLogIN;
     this.sellerService = sellerService;
 }