Пример #1
0
		public async Task<bool> RequestAcceptDeclineLeaveGroupAsOwner(string id, OwnerHandlingType handlingType)
		{
			var uri = "/AcceptDeclineLeaveGroupAsOwner?groupId=" + id + "&handlingType=" + handlingType;
			App.coreView.updateHomeView();
			return await PutGroupServerCall(uri);
		}
Пример #2
0
		public async Task<bool> AcceptDeclineLeaveEventAsOwner(string id, OwnerHandlingType handlingType)
		{
			var uri = "/AcceptDeclineLeaveEventAsOwner?eventId=" + id + "&handlingType=" + handlingType;
			App.coreView.updateHomeView();
			return await PutEventServerCall(uri);
		}