diff options
| author | Danail Dimitrov <danaildimitrov321@gmail.com> | 2021-02-26 09:25:24 +0200 |
|---|---|---|
| committer | Danail Dimitrov <danaildimitrov321@gmail.com> | 2021-02-26 09:25:24 +0200 |
| commit | 8e0038628e866ac5ce716e7971e150d2a8f23f4c (patch) | |
| tree | 4f254e27cec831100e479959e58f01ff4ac7045e /src/Services/DevHive.Services/Configurations | |
| parent | 42f4506395d6b9e7593253856a21b2b536e18df5 (diff) | |
| download | DevHive-8e0038628e866ac5ce716e7971e150d2a8f23f4c.tar DevHive-8e0038628e866ac5ce716e7971e150d2a8f23f4c.tar.gz DevHive-8e0038628e866ac5ce716e7971e150d2a8f23f4c.zip | |
Added GetById for rating
Diffstat (limited to 'src/Services/DevHive.Services/Configurations')
| -rw-r--r-- | src/Services/DevHive.Services/Configurations/Mapping/RatingMappings.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Services/DevHive.Services/Configurations/Mapping/RatingMappings.cs b/src/Services/DevHive.Services/Configurations/Mapping/RatingMappings.cs index 6d21de0..7056afa 100644 --- a/src/Services/DevHive.Services/Configurations/Mapping/RatingMappings.cs +++ b/src/Services/DevHive.Services/Configurations/Mapping/RatingMappings.cs @@ -9,6 +9,8 @@ namespace DevHive.Services.Configurations.Mapping public RatingMappings() { CreateMap<CreateRatingServiceModel, Rating>(); + + CreateMap<Rating, ReadRatingServiceModel>(); } } } |
