internal DiskMasterFormExample(IMasterFormsRepository repository, string name, string path, IMasterFormsCategory parent)
 {
     _repository       = repository;
     _processingEngine = new FormProcessingEngine();
     _attributes       = null;
     _name             = name;
     _parent           = parent;
     _path             = path;
 }
 internal DiskMasterFormsCategoryExample(IMasterFormsRepository repository, string name, string path, IMasterFormsCategory parent)
 {
     _repository        = repository;
     _name              = name;
     _parent            = parent;
     _path              = path;
     _recognitionEngine = new FormRecognitionEngine();
     _childCategories   = new MasterFormsCategoryCollection();
     _masterForms       = new MasterFormCollection();
 }