How to create additional properties
- Create property class that implements
IPropertyref interface. Implement interface members.
- If property can be automatically imported from repository, make the class implement
IImportableref interface. Implement interface members.
- If property can be checked at repository, make the class implement
ICheckableref interface. Implement interface members.
- All done! Property is created. There is no need to add property to Inversion of Control, it is done automatically using reflection.
- HINTS:
- Methods from
PropertyExtensionsref class can be used to help implement some properties.
- There is description for each interface member in API documentation, which can help with implementation.
- Already implemented properties can be checked to help implement the new ones.