I have two Generated Interfaces ...IPerson... and ...IAddress.......However I have defined Property Interfaces which Inherit from those base Interfaces...Interfaces...public interface IPerson_Name : IPerson { String Name{get;set;}}
public interface IPers...