OElite.Services.Platform 5.0.9

dotnet add package OElite.Services.Platform --version 5.0.9
                    
NuGet\Install-Package OElite.Services.Platform -Version 5.0.9
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="OElite.Services.Platform" Version="5.0.9" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="OElite.Services.Platform" Version="5.0.9" />
                    
Directory.Packages.props
<PackageReference Include="OElite.Services.Platform" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add OElite.Services.Platform --version 5.0.9
                    
#r "nuget: OElite.Services.Platform, 5.0.9"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package OElite.Services.Platform@5.0.9
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=OElite.Services.Platform&version=5.0.9
                    
Install as a Cake Addin
#tool nuget:?package=OElite.Services.Platform&version=5.0.9
                    
Install as a Cake Tool

OElite.Services.Platform

Platform business logic services: auth, customer, merchant, order, payment, inventory, role, settings, tenant, and omni-channel operations.

NuGet Version .NET

Overview

OElite.Services.Platform provides the business logic service layer for the OElite eCommerce Platform. Every service implements IOEliteService and is auto-discovered and registered through OElite.Common.Hosting's AddOEliteDependencyInjections() extension.

This package is the heart of the Platform's business operations: it orchestrates data access (via OElite.Data.Platform), applies business rules, manages caching, and emits audit events. Nexus (the core API server) is the primary consumer.

Features

🔐 Auth & Identity

  • AuthService: Authentication, token issuance, refresh, and revocation
  • RoleService / PermissionService: RBAC and permission catalog management
  • IPasswordHasher: Argon2id password hashing

🏪 Commerce Operations

  • CustomerService: Customer CRUD, search, multi-tenant isolation
  • MerchantService: Merchant onboarding, settings, configuration
  • ProductService / CategoryService / CampaignService: Catalog management
  • OrderService: Order lifecycle (create, cancel, fulfill, refund)
  • PaymentService: Payment processing and webhook handling
  • FinanceService: Invoices, expenses, payment tracking

📦 Inventory & Operations

  • InventoryService: Stock adjustments, reservations, low-stock alerts
  • DashboardService: Aggregated analytics and KPIs

🏢 Multi-tenant

  • TenantService: Tenant context resolution and configuration
  • SettingService: Per-tenant configuration overrides
  • All services enforce tenant isolation via RequestContext

🌐 OmniChannel

  • SalesChannelStockAllocationService: Multi-channel stock allocation
  • ShippingProviderService / MerchantShippingProviderService: Shipping integration
  • OeSterlingAccountService / OeSterlingUsageEventService: Loyalty points accounting
  • EnhancedSalesChannelService: Channel management and synchronization

🔔 Auxiliary

  • NotificationService: Email, push, and in-app notification dispatch
  • PasswordHasher: Argon2id implementation

Quick Start

1. Installation

dotnet add package OElite.Services.Platform

2. Inject a Service

using OElite.Services.Platform.Biz.Customers;

public class MyController
{
    private readonly CustomerService _customers;

    public MyController(CustomerService customers)
    {
        _customers = customers;
    }

    public async Task<IActionResult> GetById(string id)
    {
        var customer = await _customers.GetByIdAsync(id);
        return customer is null ? NotFound() : Ok(customer);
    }
}

Services are auto-registered via OElite's AddOEliteDependencyInjections() — no manual services.AddScoped<CustomerService>() required.

Dependencies

  • OElite.Services (core service patterns)
  • OElite.Data.Platform (repositories)
  • OElite.Common.Platform (entities and DTOs)
  • OElite.Common.Hosting.AspNetCore (DI integration)
  • OElite.Restme.Hosting 2.x, OElite.Restme.MongoDb 2.x, OElite.Restme.RateLimiting 2.x
  • OElite.Common.Hosting.AspNetCore - DI auto-discovery entry point
  • OElite.Servers.Nexus - Reference implementation using all these services

License

Copyright (c) Phanes. All rights reserved.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
5.0.9 54 8/31/2026