public TechnologyEmployedViewModel(Guid notificationId, TechnologyEmployedData technologyEmployedData)
        {
            NotificationId = notificationId;

            if (technologyEmployedData.HasTechnologyEmployed)
            {
                Details = technologyEmployedData.Details;
                FurtherDetails = technologyEmployedData.FurtherDetails;
                AnnexProvided = technologyEmployedData.AnnexProvided;
            }
        }
        public TechnologyEmployedViewModel(Guid notificationId, TechnologyEmployedData technologyEmployedData)
        {
            NotificationId = notificationId;

            if (technologyEmployedData.HasTechnologyEmployed)
            {
                Details        = technologyEmployedData.Details;
                FurtherDetails = technologyEmployedData.FurtherDetails;
                AnnexProvided  = technologyEmployedData.AnnexProvided;
            }
        }