12345678910111213141516171819202122 |
- using AutoMapper;
- using GxPress.Mappings;
- using Microsoft.Extensions.DependencyInjection;
- namespace GxPress.Api.ServiceExtensions
- {
- public static class AutoMapperExtension
- {
-
-
-
-
-
- public static IServiceCollection AddMappers(this IServiceCollection services)
- {
-
- services.AddAutoMapper(typeof(ProcessMapping));
- return services;
- }
- }
- }
|