mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-03 16:19:46 +00:00
16 lines
434 B
C#
16 lines
434 B
C#
using Microsoft.Extensions.DependencyInjection;
|
|
using ShoppingAssistantApi.Application.MappingProfiles;
|
|
using System.Reflection;
|
|
|
|
namespace ShoppingAssistantApi.Application.ApplicationExtentions;
|
|
|
|
public static class MapperExtension
|
|
{
|
|
public static IServiceCollection AddMapper(this IServiceCollection services)
|
|
{
|
|
services.AddAutoMapper(Assembly.GetAssembly(typeof(UserProfile)));
|
|
|
|
return services;
|
|
}
|
|
}
|