You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
338 B
C#
13 lines
338 B
C#
using Application.Interface;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace Application
|
|
{
|
|
public static class ApplicationExtensions
|
|
{
|
|
public static void AddApplication(this IServiceCollection services)
|
|
{
|
|
services.AddTransient<IWcsTaskApplication, WcsTaskApplication>();
|
|
}
|
|
}
|
|
} |