13 lines
391 B
C#
13 lines
391 B
C#
using Contracts.Services;
|
|
using Services.Reports;
|
|
|
|
namespace Controllers.Extensions;
|
|
|
|
public static class AddReportServicesExtension
|
|
{
|
|
public static void AddReportServices(this IServiceCollection services)
|
|
{
|
|
services.AddTransient<IReportPeriodService, ReportPeriodService>();
|
|
services.AddTransient<IReportOffsetFromPlanService, ReportOffsetFromPlanService>();
|
|
}
|
|
} |