internal IViewHandlerEnumerator(IViewHandlerCollection collection)
 {
     this.enumerator = ((IEnumerable)collection).GetEnumerator ();
 }
예제 #2
0
 internal IViewHandlerEnumerator(IViewHandlerCollection collection)
 {
     this.enumerator = ((IEnumerable)collection).GetEnumerator();
 }
 //Ctor
 protected DefaultComponentModel()
 {
     logger = LogManager.GetLogger (this.GetType ().ToString ());
     logger.Debug ("Executing ctor for: " + this.GetType ().FullName);
     viewHandlerCollection = new IViewHandlerCollection ();
 }