コード例 #1
0
      public SalesAsyncExamples( ISalesContext salesContext )
      {
         if ( salesContext == null )
            throw new ArgumentNullException( "salesContext" );

         _salesContext = salesContext;
      }
コード例 #2
0
        public SalesAsyncExamples(ISalesContext salesContext)
        {
            if (salesContext == null)
            {
                throw new ArgumentNullException("salesContext");
            }

            _salesContext = salesContext;
        }
コード例 #3
0
 public ProductsController(ISalesContext context)
 {
     SalesContext = context;
 }
コード例 #4
0
 public OrdersController(ISalesContext context)
 {
     _context = context;
 }
コード例 #5
0
 public SubmitOrderHandler(ISalesContext context)
 {
     _context = context;
 }
コード例 #6
0
 public PackageBLL(ISalesContext ctx)
 {
     _ctx = ctx;
 }
コード例 #7
0
 public SalesmanBLL(ISalesContext ctx)
 {
     _ctx = ctx;
 }
コード例 #8
0
 public OrdersController(ISalesContext context, IEndpointInstance endpoint)
 {
     _context  = context;
     _endpoint = endpoint;
 }
コード例 #9
0
 public ShoppingCartController(ICacheHelper cacheHelper, ISalesContext context)
 {
     Context = context;
       CacheHelper = cacheHelper;
 }