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; }
public NewRegister(MainLogIN mainLogIN, ICustomerService customerService) { this.mainLogIN = mainLogIN; this.customerService = customerService; InitializeComponent(); }
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; }