本文整理汇总了C#中Service1Client.RemoveTutoringTime方法的典型用法代码示例。如果您正苦于以下问题:C# Service1Client.RemoveTutoringTime方法的具体用法?C# Service1Client.RemoveTutoringTime怎么用?C# Service1Client.RemoveTutoringTime使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Service1Client
的用法示例。
在下文中一共展示了Service1Client.RemoveTutoringTime方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: RemoveTutoringTime
private void RemoveTutoringTime()
{
int teacherId = teacher.Id;
DateTime date = calendar.SelectionRange.Start;
string time = cbScTime.Text;
Service1Client winService = new Service1Client();
if (winService.RemoveTutoringTime(teacherId, date, time) == 1)
{
MessageBox.Show("Selected time was removed from your schedule");
}
else
{
MessageBox.Show("Selected time does not exist in the database");
}
}
示例2: RemoveTutoringTimeBtn_Click
protected void RemoveTutoringTimeBtn_Click(object sender, EventArgs e)
{
DateTime date = Calendar.SelectedDate.Date;
string time = TimesCB.SelectedValue.ToString();
int teacherId = securityHelper.Id;
Service1Client client = new Service1Client();
TutoringTime existingTt = client.GetExactTutoringTime(date, time, teacherId);
if (existingTt != null)
{
int i = client.RemoveTutoringTime(date, time, teacherId);
if (i == 1)
{
Response.Write("<script>alert('Tutoring time successufully removed.')</script>");
}
else
{
Response.Write("<script>alert('An error occured. The tutoring time was not removed.')</script>");
}
}
else
{
Response.Write("<script>alert('The specified tutoring time does not exist in the database.')</script>");
}
}