No Description

AutoMapperExtensions.cs 389B

123456789101112131415
  1. using Backend.ApplicationCore.Mapper;
  2. using Microsoft.Extensions.DependencyInjection;
  3. namespace Backend.API.Config
  4. {
  5. public static class AutoMapperExtensions
  6. {
  7. public static IServiceCollection AddAutoMapperConfig(this IServiceCollection services)
  8. {
  9. services.AddAutoMapper(typeof(AutoMapperProfile));
  10. return services;
  11. }
  12. }
  13. }

Powered by TurnKey Linux.