• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C# IInvoiceService类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C#中IInvoiceService的典型用法代码示例。如果您正苦于以下问题:C# IInvoiceService类的具体用法?C# IInvoiceService怎么用?C# IInvoiceService使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



IInvoiceService类属于命名空间,在下文中一共展示了IInvoiceService类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。

示例1: InvoicesController

 public InvoicesController(IInvoiceService invoiceService, IPatronService patronService, IProductService productService, IMapper<Invoice, InvoiceDTO> mapper)
 {
     _invoiceService = invoiceService;
     _patronService = patronService;
     _productService = productService;
     _mapper = mapper;
 }
开发者ID:txsll,项目名称:SLLInvoices,代码行数:7,代码来源:InvoicesController.cs


示例2: GatewayProviderService

        internal GatewayProviderService(IDatabaseUnitOfWorkProvider provider, RepositoryFactory repositoryFactory, 
            IShipMethodService shipMethodService, IShipRateTierService shipRateTierService, 
            IShipCountryService shipCountryService, IInvoiceService invoiceService, IOrderService orderService, ITaxMethodService taxMethodService, 
            IPaymentService paymentService, IPaymentMethodService paymentMethodService)
        {
            Mandate.ParameterNotNull(provider, "provider");
            Mandate.ParameterNotNull(repositoryFactory, "repositoryFactory");
            Mandate.ParameterNotNull(shipMethodService, "shipMethodService");
            Mandate.ParameterNotNull(shipRateTierService, "shipRateTierService");
            Mandate.ParameterNotNull(shipCountryService, "shipCountryService");
            Mandate.ParameterNotNull(taxMethodService, "countryTaxRateService");
            Mandate.ParameterNotNull(paymentService, "paymentService");
            Mandate.ParameterNotNull(paymentMethodService, "paymentMethodService");
            Mandate.ParameterNotNull(invoiceService, "invoiceService");
            Mandate.ParameterNotNull(orderService, "orderService");

            _uowProvider = provider;
            _repositoryFactory = repositoryFactory;
            _shipMethodService = shipMethodService;
            _shipRateTierService = shipRateTierService;
            _shipCountryService = shipCountryService;
            _invoiceService = invoiceService;
            _orderService = orderService;
            _taxMethodService = taxMethodService;
            _paymentService = paymentService;
            _paymentMethodService = paymentMethodService;
        }
开发者ID:koswesley,项目名称:Merchello-1,代码行数:27,代码来源:GatewayProviderService.cs


示例3: TodaysCustomerTransactionsViewModel

        public TodaysCustomerTransactionsViewModel(ICustomerService customerService, IInvoiceService invoiceService)
        {
            CustomerService = customerService;
            InvoiceService = invoiceService;

            Items = new BindableCollection<CustomerTransactionModel>();
        }
开发者ID:edjo23,项目名称:shop,代码行数:7,代码来源:TodaysCustomerTransactionsViewModel.cs


示例4: InvoicePopupViewModel

        public InvoicePopupViewModel(IInvoiceService invoiceService, IProductService productService)
        {
            InvoiceService = invoiceService;
            ProductService = productService;

            Items = new BindableCollection<SaleItemViewModel>();
        }
开发者ID:edjo23,项目名称:shop,代码行数:7,代码来源:InvoicePopupViewModel.cs


示例5: PurchaseController

 public PurchaseController(IProductService productService, IPurchaseService purchaseService,
     IInvoiceService invoiceService, IStatusService statusService)
 {
     _productService = productService;
     _purchaseService = purchaseService;
     _invoiceService = invoiceService;
     _statusService = statusService;
 }
开发者ID:jfvaleroso,项目名称:Shoppe,代码行数:8,代码来源:PurchaseController.cs


示例6: InvoiceController

 public InvoiceController(IInvoiceService invoiceService, IGroupService groupService, IUserService userService, IAccountService accountService , IContactService contactService, ISalesOrderService salesOrderService)
 {
     this.invoiceService = invoiceService;
     this.groupService = groupService;
     this.userService = userService;
     this.contactService = contactService;
     this.accountService = accountService;
     this.salesOrderService = salesOrderService;
 }
开发者ID:ravindrap52,项目名称:SalesApplication,代码行数:9,代码来源:InvoiceController.cs


示例7: CustomerInvoiceViewModel

        public CustomerInvoiceViewModel(IEventAggregator eventAggregator, ICustomerService customerService, IProductService productService, IInvoiceService invoiceService)
        {
            EventAggregator = eventAggregator;
            CustomerService = customerService;
            ProductService = productService;
            InvoiceService = invoiceService;

            DisplayName = "New Invoice";
            Items = new BindableCollection<CustomerInvoiceItemViewModel>();
        }
开发者ID:edjo23,项目名称:shop,代码行数:10,代码来源:CustomerInvoiceViewModel.cs


示例8: ClientController

 public ClientController(ILogger logger,
     IObjectStore objectStore,
     IEmailService emailService,
     IMembershipService membershipService,
     IInvoiceService invoiceService)
     : base(logger, objectStore, emailService)
 {
     _MembershipService = membershipService;
     _InvoiceService = invoiceService;
 }
开发者ID:tah91,项目名称:eworkyWebSite,代码行数:10,代码来源:ClientController.cs


示例9: PotentialController

 public PotentialController(IPotentialService potentialService, IGroupService groupService, IUserService userService,
     ICampaignService campaignService, IAccountService accountService, IInvoiceService invoiceService, IQuoteService quoteService)
 {
     this.potentialService = potentialService;
     this.groupService = groupService;
     this.userService = userService;
     this.campaignService = campaignService;
     this.accountService = accountService;
     this.invoiceService = invoiceService;
     this.quoteService = quoteService;
 }
开发者ID:ravindrap52,项目名称:SalesApplication,代码行数:11,代码来源:PotentialController.cs


示例10: BuyController

 public BuyController(IProductService productService, ICustomerService customerService,
     IProfileService profileService, IUserService userService, IInvoiceService invoiceService,
     ISecurityCodeService securityCodeService)
 {
     _customerService = customerService;
     _profileService = profileService;
     _invoiceService = invoiceService;
     _securityCodeService = securityCodeService;
     _service = new Service(productService);
     _common = new Common(userService);
 }
开发者ID:jfvaleroso,项目名称:Shoppe,代码行数:11,代码来源:BuyController.cs


示例11: SaleViewModel

        public SaleViewModel(ScreenCoordinator screenCoordinator, ICustomerService customerService, IProductService productService, IInvoiceService invoiceService, IDiscountService discountService)
        {
            ScreenCoordinator = screenCoordinator;
            CustomerService = customerService;
            ProductService = productService;
            InvoiceService = invoiceService;
            DiscountService = discountService;

            DisplayName = "PURCHASE";
            Products = new BindableCollection<SaleItemViewModel>();
        }
开发者ID:edjo23,项目名称:shop,代码行数:11,代码来源:SaleViewModel.cs


示例12: InvoiceController

 public InvoiceController(IProductService productService, IPurchaseService purchaseService,
     IInvoiceService invoiceService, IStoreService storeInvoice, IUserService userService,
     ICustomerService customerService, IStatusService statusService)
 {
     _productService = productService;
     _purchaseService = purchaseService;
     _invoiceService = invoiceService;
     _storeInvoice = storeInvoice;
     _userService = userService;
     _customerService = customerService;
     _statusService = statusService;
 }
开发者ID:jfvaleroso,项目名称:Shoppe,代码行数:12,代码来源:InvoiceController.cs


示例13: ReceiptViewModel

        public ReceiptViewModel(ScreenCoordinator screenCoordinator, ImageService imageService, ICustomerService customerService, IProductService productService, IInvoiceService invoiceService, IDiscountService discountService, IEventAggregator eventAggregator)
        {
            ScreenCoordinator = screenCoordinator;
            ImageService = imageService;
            CustomerService = customerService;
            ProductService = productService;
            InvoiceService = invoiceService;
            DiscountService = discountService;
            EventAggregator = eventAggregator;

            DisplayName = "RECEIPT";
            Products = new BindableCollection<SaleItemViewModel>();
        }
开发者ID:edjo23,项目名称:shop,代码行数:13,代码来源:ReceiptViewModel.cs


示例14: QuoteController

 public QuoteController(
     ILeadService LeadService, 
     IContactService contactService,
     IMembershipService membershipService,
     IRoleService roleService,
     INoteService noteService,
     IActivityService activityService,
     IQuoteService quoteService,
     IInvoiceService invoiceService)
 {
     _leadService = LeadService;
     _contactService = contactService;
     _membershipService = membershipService;
     _roleService = roleService;
     _noteService = noteService;
     _activityService = activityService;
     _quoteService = quoteService;
     _invoiceService = invoiceService;
 }
开发者ID:GiscardBiamby,项目名称:crumb-crm,代码行数:19,代码来源:QuoteController.cs


示例15: InvoiceController

 public InvoiceController(
     ILeadService LeadService,
     IContactService contactService,
     IMembershipService membershipService,
     IRoleService roleService,
     INoteService noteService,
     IActivityService activityService,
     IInvoiceService invoiceService,
     ISaleService saleService,
     ViewDataHelper initHelper)
 {
     _leadService = LeadService;
     _contactService = contactService;
     _membershipService = membershipService;
     _roleService = roleService;
     _noteService = noteService;
     _activityService = activityService;
     _saleService = saleService;
     _invoiceService = invoiceService;
     _initHelper = initHelper;
 }
开发者ID:deboe2015,项目名称:crumb-crm,代码行数:21,代码来源:InvoiceController.cs


示例16: InvoiceServiceSaved

 /// <summary>
 /// Adds saved invoices to the index
 /// </summary>
 /// <param name="sender">
 /// The sender.
 /// </param>
 /// <param name="e">
 /// The e.
 /// </param>
 public static void InvoiceServiceSaved(IInvoiceService sender, SaveEventArgs<IInvoice> e)
 {
     e.SavedEntities.ForEach(IndexInvoice);
 }
开发者ID:jlarc,项目名称:Merchello,代码行数:13,代码来源:ExamineEvents.cs


示例17: InvoicesController

        public InvoicesController(IOrderService orderService,
            IOrderReportService orderReportService,
            IOrderProcessingService orderProcessingService,
            IPriceCalculationService priceCalculationService,
            IDateTimeHelper dateTimeHelper,
            IPriceFormatter priceFormatter,
            IDiscountService discountService,
            ILocalizationService localizationService,
            IWorkContext workContext,
            ICurrencyService currencyService,
            IEncryptionService encryptionService,
            IPaymentService paymentService,
            IMeasureService measureService,
            IPdfService pdfService,
            IAddressService addressService,
            ICountryService countryService,
            IStateProvinceService stateProvinceService,
            Nop.Services.Catalog.IProductService productService,
            IExportManager exportManager,
            IPermissionService permissionService,
            IWorkflowMessageService workflowMessageService,
            ICategoryService categoryService,
            IManufacturerService manufacturerService,
            IProductAttributeService productAttributeService,
            IProductAttributeParser productAttributeParser,
            IProductAttributeFormatter productAttributeFormatter,
            IShoppingCartService shoppingCartService,
            IGiftCardService giftCardService,
            IDownloadService downloadService,
            IShipmentService shipmentService,
            IShippingService shippingService,
            IStoreService storeService,
            IVendorService vendorService,
            IAddressAttributeParser addressAttributeParser,
            IAddressAttributeService addressAttributeService,
            IAddressAttributeFormatter addressAttributeFormatter,
            IAffiliateService affiliateService,
            IPictureService pictureService,
            CurrencySettings currencySettings,
            TaxSettings taxSettings,
            MeasureSettings measureSettings,
            AddressSettings addressSettings,
            ShippingSettings shippingSettings,
            IInvoiceService invoiceService,
            IGenericAttributeService genericAttributeService,
            IProductTemplateService productTemplateService,
            IStoreContext storeContext,
            ISettingService settingService,
            IGroupDealService groupDealService)
        {
            this._orderService = orderService;
            this._orderReportService = orderReportService;
            this._orderProcessingService = orderProcessingService;
            this._priceCalculationService = priceCalculationService;
            this._dateTimeHelper = dateTimeHelper;
            this._priceFormatter = priceFormatter;
            this._discountService = discountService;
            this._localizationService = localizationService;
            this._workContext = workContext;
            this._currencyService = currencyService;
            this._encryptionService = encryptionService;
            this._paymentService = paymentService;
            this._measureService = measureService;
            this._pdfService = pdfService;
            this._addressService = addressService;
            this._countryService = countryService;
            this._stateProvinceService = stateProvinceService;
            this._productService = productService;
            this._exportManager = exportManager;
            this._permissionService = permissionService;
            this._workflowMessageService = workflowMessageService;
            this._categoryService = categoryService;
            this._manufacturerService = manufacturerService;
            this._productAttributeService = productAttributeService;
            this._productAttributeParser = productAttributeParser;
            this._productAttributeFormatter = productAttributeFormatter;
            this._shoppingCartService = shoppingCartService;
            this._giftCardService = giftCardService;
            this._downloadService = downloadService;
            this._shipmentService = shipmentService;
            this._shippingService = shippingService;
            this._storeService = storeService;
            this._vendorService = vendorService;
            this._addressAttributeParser = addressAttributeParser;
            this._addressAttributeService = addressAttributeService;
            this._addressAttributeFormatter = addressAttributeFormatter;
            this._affiliateService = affiliateService;
            this._pictureService = pictureService;

            this._currencySettings = currencySettings;
            this._taxSettings = taxSettings;
            this._measureSettings = measureSettings;
            this._addressSettings = addressSettings;
            this._shippingSettings = shippingSettings;
            this._invoiceService = invoiceService;
            this._genericAttributeService = genericAttributeService;
            this._productTemplateService = productTemplateService;
            this._storeContext = storeContext;
            this._settingService = settingService;
            this._groupDealService = groupDealService;
//.........这里部分代码省略.........
开发者ID:mhsohail,项目名称:Livetameion_3.7,代码行数:101,代码来源:InvoicesController.cs


示例18: InvoiceServiceDeleted

 /// <summary>
 /// Removes deleted invoices from the index 
 /// </summary>
 /// <param name="sender">
 /// The sender.
 /// </param>
 /// <param name="e">
 /// The e.
 /// </param>
 public static void InvoiceServiceDeleted(IInvoiceService sender, DeleteEventArgs<IInvoice> e)
 {
     e.DeletedEntities.ForEach(DeleteInvoiceFromIndex);
 }
开发者ID:jlarc,项目名称:Merchello,代码行数:13,代码来源:ExamineEvents.cs


示例19: InvoiceServiceSaved

 private void InvoiceServiceSaved(IInvoiceService sender, SaveEventArgs<IInvoice> e)
 {
     var provider = (InvoiceIndexer)ExamineManager.Instance.IndexProviderCollection["MerchelloInvoiceIndexer"];
     foreach (var invoice in e.SavedEntities)
     {
         provider.AddInvoiceToIndex(invoice);
     }
 }
开发者ID:arknu,项目名称:Merchello,代码行数:8,代码来源:InvoiceAndOrderProviderTests.cs


示例20: ExportOrdersReportApiController

        /// <summary>
        /// Initializes a new instance of the <see cref="ExportOrdersReportApiController"/> class.
        /// </summary>
        /// <param name="merchelloContext">
        /// The merchello context.
        /// </param>
        public ExportOrdersReportApiController(IMerchelloContext merchelloContext)
            : base(merchelloContext)
        {
            _invoiceService = merchelloContext.Services.InvoiceService;

            _merchello = new MerchelloHelper(merchelloContext.Services);
        }
开发者ID:GaryLProthero,项目名称:Merchello,代码行数:13,代码来源:ExportOrdersReportApiController.cs



注:本文中的IInvoiceService类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# IIocManager类代码示例发布时间:2022-05-24
下一篇:
C# IInvoice类代码示例发布时间:2022-05-24
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap