//Use this method to add an item that needs it's content loaded.
		public void Add(IContentOwner owner)
		{
			if (loadingInProgress)
				throw new InvalidOperationException("Loading has already started...");

			//store it in the list
			this.contentToLoad.Add(owner);
		}
 public ZodiacDeterminantNavigationModel(IContentOwner contentOwner) : base(contentOwner)
 {
 }
 protected BaseNavigationModel(IContentOwner contentOwner)
 {
     _contentOwner    = contentOwner;
     _viewsDictionary = new Dictionary <ViewType, INavigatable>();
 }
 public InitializationNavigationModel(IContentOwner contentOwner) : base(contentOwner)
 {
 }
 public ViewNavigationModel(IContentOwner contentOwner) : base(contentOwner)
 {
 }
		void IContentRegister.Remove(IContentOwner owner)
		{
			throw new NotSupportedException();
		}
Exemple #7
0
 public ListNavigationModel(IContentOwner contentOwner) : base(contentOwner)
 {
 }
Exemple #8
0
 void IContentRegister.Remove(IContentOwner owner)
 {
     throw new NotSupportedException();
 }
Exemple #9
0
 internal TasksNavigationModel(IContentOwner contentOwner) : base(contentOwner)
 {
 }
Exemple #10
0
 public ViewProcessDetailsNavigationModel(IContentOwner contentOwner) : base(contentOwner)
 {
 }
Exemple #11
0
 public AddEditPersonNavigationModel(IContentOwner contentOwner) : base(contentOwner)
 {
 }
Exemple #12
0
        //private readonly IContentOwner _contentOwner;//

        public AuthenticationNavigationModel(IContentOwner contentOwner) : base(contentOwner)
        {
            //this._contentOwner = _contentOwner;//
        }
 public AuthenticationNavigationModel(IContentOwner contentOwner) : base(contentOwner)
 {
 }