public PublicAtttachmentPresenter(IProgressAttachmentModel model, IProgressAttachmentView view)
		{
			_model = model;
			_view = view;
		}
		public ProgressAttachmentPresenter(IProgressAttachmentView view, IProgressAttachmentModel model, SynchronizationContext context)
		{
			_view = view;
			_model = model;
			_context = context;
		}