using AutoMapper; using SessionCompanion.Database.Tables; using SessionCompanion.ViewModels.ShopkeeperItemsViewModels; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SessionCompanion.Services.Profiles { public class ShopkeeperItemsProfile : Profile { public ShopkeeperItemsProfile() { CreateMap().ReverseMap(); } } }