blob: 4e071de09c490c5fc52744fee8191c003a4c1d46 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using AutoMapper;
using DevHive.Services.Models.Post.Rating;
using DevHive.Web.Models.Post.Rating;
namespace DevHive.Web.Configurations.Mapping
{
public class RatingMappings : Profile
{
public RatingMappings()
{
CreateMap<RatePostWebModel, RatePostServiceModel>();
CreateMap<ReadPostRatingServiceModel, ReadPostRatingWebModel>();
}
}
}
|