本文整理汇总了C#中Service1Client.GetExactTutoringTime方法的典型用法代码示例。如果您正苦于以下问题:C# Service1Client.GetExactTutoringTime方法的具体用法?C# Service1Client.GetExactTutoringTime怎么用?C# Service1Client.GetExactTutoringTime使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Service1Client
的用法示例。
在下文中一共展示了Service1Client.GetExactTutoringTime方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CreateTutoringTimeBtn_Click
protected void CreateTutoringTimeBtn_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.CreateTutoringTime(date, time, teacherId);
if (i == 1)
{
Response.Write("<script>alert('Tutoring time successufully created')</script>");
}
else
{
Response.Write("<script>alert('Something went wrong. Please try again.')</script>");
}
}
else
{
Response.Write("<script>alert('There is a tutoring time already created with the specified date and time')</script>");
}
}
示例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>");
}
}