/// <inheritdoc /> public Gizmo Convert(ItemDTO value, object state) { var entity = new UnlimitedConsumable(); this.Merge(entity, value, state); return(entity); }
// Implement this method in a buddy class to set properties that are specific to 'UnlimitedConsumable' (if any) partial void Merge(UnlimitedConsumable entity, ItemDTO dto, object state);