You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
abp/samples/BookStore-Modular/modules/book-management/host/Acme.BookStore.BookManageme.../BookManagementWebAutoMapper...

13 lines
289 B

using AutoMapper;
namespace Acme.BookStore.BookManagement
{
public class BookManagementWebAutoMapperProfile : Profile
{
public BookManagementWebAutoMapperProfile()
{
//Define your AutoMapper configuration here for the Web project.
}
}
}