private void showAlertGetNoData(TCBookingTemplateViewController controller)
		{
			string title = "";

			if (controller is TCBookingAlertViewController) {
				title = TCLocalizabled.getText("TextAlertTitleBookingAlert");
			} else if (controller is TCBookingRequestViewController) {
				title = TCLocalizabled.getText("TextAlertTitleBookingRequest");
			} else if (controller is TCBookingConfirmedViewController) {
				title = TCLocalizabled.getText("TextAlertTitleBookingComfirm");
			} else if (controller is TCBookingPastViewController) {
				title = TCLocalizabled.getText("TextAlertTitleBookingPast");
			}

			MUtils.showAlert (controller, title, TCLocalizabled.getText("TextMessageNotReceiveConfig"));
		}
Пример #2
0
		public TCBookingTableViewSource (TCBookingTemplateViewController vc) : base (vc, vc.refreshHeaderView, vc.tableView)
		{
			this.controller = vc;
		}