public void updateStatusCurrentUser(object notificaiton)
		{
			if (!MApplication.getInstance ().isCompleteProfile) {
				TCCurrentUserHelper currentUserHelper = new TCCurrentUserHelper (this);
				currentUserHelper.Delegate = this;
				currentUserHelper.getStatus ();
			}
		}
		public	void getCurrentUserFail (TCCurrentUserHelper sender)
		{
			MUtils.showNetworkFailed (this);
		}
		public	void finishUpdateCurrentUser (TCCurrentUserHelper sender)
		{
			this.loadingView.dismiss ();
		}
		public	void getCurrentUserSuccess (TCCurrentUserHelper sender, bool status)
		{
			MApplication.getInstance().isCompleteProfile = status;
		}
		public	void beginUpdateCurrentUser (TCCurrentUserHelper sender)
		{
			this.loadingView.show ();
		}