コード例 #1
0
 public ShoppingCart(IItemPage itemPage, ISignInPage signInPage, ICheckoutPage checkoutPage, IShippingAddressPage shippingAddressPage)
 {
     _itemPage            = itemPage;
     _signInPage          = signInPage;
     _checkoutPage        = checkoutPage;
     _shippingAddressPage = shippingAddressPage;
 }
コード例 #2
0
 public ShoppingCart(IItemPage itemPage, ISignInPage signInPage, ICheckoutPage checkoutPage, IShippingAddressPage shippingAddressPage)
 {
     this.itemPage            = itemPage;
     this.signInPage          = signInPage;
     this.checkoutPage        = checkoutPage;
     this.shippingAddressPage = shippingAddressPage;
 }
コード例 #3
0
ファイル: ShoppingCart.cs プロジェクト: sm555/Projects
 public ShoppingCart(IItemPage itemPage, ISignInPage signInPage, ICheckoutPage checkoutPage, IShippingAddressPage shippingAddressPage)
 {
     this.itemPage = itemPage;
     this.signInPage = signInPage;
     this.checkoutPage = checkoutPage;
     this.shippingAddressPage = shippingAddressPage;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="SignInPresenter" /> class.
 /// </summary>
 /// <param name="navigationService">The navigation service.</param>
 /// <param name="signInPage">The sign in page.</param>
 /// <param name="signInPageViewModel">The sign in page view model.</param>
 /// <param name="securityServiceClient">The security service client.</param>
 public SignInPresenter(INavigationService navigationService,
                        ISignInPage signInPage, SignInPageViewModel signInPageViewModel,
                        ISignedInGolfClubAdministratorPage signedInGolfClubAdministratorPage,
                        ISecurityServiceClient securityServiceClient)
 {
     this.NavigationService   = navigationService;
     this.SignInPage          = signInPage;
     this.SignInPageViewModel = signInPageViewModel;
     this.SignedInGolfClubAdministratorPage = signedInGolfClubAdministratorPage;
     this.SecurityServiceClient             = securityServiceClient;
 }
コード例 #5
0
 /// <summary>
 /// Initializes a new instance of the <see cref="SignInPresenter"/> class.
 /// </summary>
 /// <param name="signInPage">The sign in page.</param>
 /// <param name="signInViewModel">The sign in view model.</param>
 /// <param name="registrationPage">The registration page.</param>
 /// <param name="registrationViewModel">The registration view model.</param>
 /// <param name="securityServiceClient">The security service client.</param>
 /// <param name="apiClient">The API client.</param>
 public SignInPresenter(ISignInPage signInPage,
                        SignInViewModel signInViewModel,
                        IRegistrationPage registrationPage,
                        RegistrationViewModel registrationViewModel,
                        ISecurityServiceClient securityServiceClient,
                        IClient apiClient,
                        IDevice device)
 {
     this.SignInPage            = signInPage;
     this.SignInViewModel       = signInViewModel;
     this.RegistrationPage      = registrationPage;
     this.RegistrationViewModel = registrationViewModel;
     this.SecurityServiceClient = securityServiceClient;
     this.ApiClient             = apiClient;
     this.Device = device;
 }