Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

WebhookMappingProfile.cs 467B

1234567891011121314151617
  1. namespace Diligent.WebAPI.Business.MappingProfiles
  2. {
  3. [ExcludeFromCodeCoverage]
  4. public class WebhookMappingProfile : Profile
  5. {
  6. public WebhookMappingProfile()
  7. {
  8. #region DTO to Model
  9. CreateMap<WebhookSubscriptionCreateDto, WebhookSubscription>();
  10. #endregion
  11. #region Model to DTO
  12. CreateMap<WebhookDefinition, WebhookDefinitionViewDto>();
  13. #endregion
  14. }
  15. }
  16. }