/// <summary>
 /// Initializes a new instance of the <see cref="ProductService"/> class.
 /// </summary>
 /// <param name="requestClientCreator">The request client creator.</param>
 public ProductService(IRequestClientCreator requestClientCreator)
 {
     _requestClientCreator = requestClientCreator;
 }
Exemple #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="CustomerService"/> class.
 /// </summary>
 /// <param name="requestClientCreator">The request client creator.</param>
 public CartService(IRequestClientCreator requestClientCreator)
 {
     _requestClientCreator = requestClientCreator;
 }
 public CustomerService(IRequestClientCreator requestClientCreator)
 {
     _requestClientCreator = requestClientCreator;
 }
Exemple #4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="OrderService"/> class.
 /// </summary>
 /// <param name="requestClientCreator">The request client creator.</param>
 public OrderService(IRequestClientCreator requestClientCreator)
 {
     _requestClientCreator = requestClientCreator;
 }