Skip to content

Instantly share code, notes, and snippets.

@evgomes
Created January 30, 2019 13:28
Show Gist options
  • Save evgomes/55545874534fa574b738ad6e31197ef1 to your computer and use it in GitHub Desktop.
Save evgomes/55545874534fa574b738ad6e31197ef1 to your computer and use it in GitHub Desktop.
ResourceToModelProfile from Supermarket API (initial code)
using AutoMapper;
using Supermarket.API.Domain.Models;
using Supermarket.API.Resources;
namespace Supermarket.API.Mapping
{
public class ResourceToModelProfile : Profile
{
public ResourceToModelProfile()
{
CreateMap<SaveCategoryResource, Category>();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment