public CustomerHomePage(MainLogIN mainLogIN, string Email, string Password)
 {
     InitializeComponent();
     this.mainLogIN = mainLogIN;
     this.Email     = Email;
     this.Password  = Password;
 }
 public SellerHomePage(MainLogIN mainLogIN, string email, string password)
 {
     InitializeComponent();
     this.mainLogIN = mainLogIN;
     this.email     = email;
     this.password  = password;
 }
Beispiel #3
0
 public NewRegister(MainLogIN mainLogIN, ICustomerService customerService)
 {
     this.mainLogIN       = mainLogIN;
     this.customerService = customerService;
     InitializeComponent();
 }
Beispiel #4
0
 public NewRegister(MainLogIN mainLogIN, ISellerService sellerService)
 {
     this.mainLogIN     = mainLogIN;
     this.sellerService = sellerService;
     InitializeComponent();
 }
 public ForgotPassword(MainLogIN mainLogIN, ICustomerService customerService)
 {
     InitializeComponent();
     this.mainLogIN       = mainLogIN;
     this.customerService = customerService;
 }
 public ForgotPassword(MainLogIN mainLogIN, ISellerService sellerService)
 {
     InitializeComponent();
     this.mainLogIN     = mainLogIN;
     this.sellerService = sellerService;
 }