| 6 | namespace API.RequestHelpers; |
| 7 | |
| 8 | public class MappingProfiles : Profile |
| 9 | { |
| 10 | public MappingProfiles() |
| 11 | { |
| 12 | CreateMap<CreateProductDto, Product>(); |
| 13 | CreateMap<UpdateProductDto, Product>(); |
| 14 | } |
| 15 | } |
nothing calls this directly
no outgoing calls
no test coverage detected