JFA.DependencyInjection
1.0.1
See the version list below for details.
dotnet add package JFA.DependencyInjection --version 1.0.1
NuGet\Install-Package JFA.DependencyInjection -Version 1.0.1
<PackageReference Include="JFA.DependencyInjection" Version="1.0.1" />
paket add JFA.DependencyInjection --version 1.0.1
#r "nuget: JFA.DependencyInjection, 1.0.1"
// Install JFA.DependencyInjection as a Cake Addin #addin nuget:?package=JFA.DependencyInjection&version=1.0.1 // Install JFA.DependencyInjection as a Cake Tool #tool nuget:?package=JFA.DependencyInjection&version=1.0.1
JFA.DependencyInjection
Register services according to container with service lifetime attributes
Install package from [nuget.org](NuGet\Install-Package JFA.DependencyInjection -Version 1.0.0)
NuGet\Install-Package JFA.DependencyInjection -Version <VERSION>
Add lifetime attribute to service implementations
[Scoped]
public class UsersService : IUsersService
{...}
[Transient]
public class ProductsService : IProductsService
{...}
[Singleton]
public class OrdersService : IOrdersService
{...}
Add following line to Program.cs file
builder.Services.AddServicesFromAttribute();
Now you can inject services
public UsersController(IUsersService usersService)
{...}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net6.0
NuGet packages (2)
Showing the top 2 NuGet packages that depend on JFA.DependencyInjection:
Package | Downloads |
---|---|
JFA.Telegram
Telegram with commands |
|
MJ.Telegram
Designed with simplicity and efficiency in mind, StepCommandHandler streamlines the process of implementing step-based workflows, providing a seamless experience for both developers and end-users. With its intuitive API and comprehensive features, developers can easily define, execute, and monitor multi-step processes, ensuring a smooth and engaging user experience. Key Features: Step Management: Define and organize multi-step processes with ease, allowing for structured user interactions. Command Handling: Effortlessly handle user commands within each step, enabling precise control over application flow. Step Tracking: Seamlessly track user progress through each step, facilitating contextual interactions and personalized experiences. Extensibility: Customize and extend functionality to suit specific application requirements, ensuring flexibility and scalability. |
GitHub repositories
This package is not used by any popular GitHub repositories.