using AutoMapper; using ZeroFramework.DeviceCenter.Application.Models.Devices; using ZeroFramework.DeviceCenter.Domain.Aggregates.DeviceAggregate; namespace ZeroFramework.DeviceCenter.Application.AutoMapper { public class DevicesProfile : Profile { public DevicesProfile() { AllowNullDestinationValues = true; AllowNullCollections = true; CreateMap(); CreateMap(); CreateMap(); CreateMap(); CreateMap(); CreateMap(); } } }