I have 2 fields like
private IFruit fruit;
private Banana banana;
An instance of Banana is created like this:
var banana = new Banana(fruit);
I want to create an attribute for Banana fields to do the job of creating Banana instance for me!