public EntityNotFoundException(Type entityType, object id, Exception innerException)
     : base($"{EntityHelper.GetEntityName(entityType).Humanize(LetterCasing.Title)} '{id}' not found.", innerException)
 {
     EntityType = entityType;
     Id         = id;
 }