我正在尝试进行预约系统。唯一的问题是,如果接受了另一个约会,我不想让客户创建约会。
我想在预约之间留出 1 小时,如果预约 A 是在 12:00,你不能在 12:00 到 13:00 之间预约
这是我的代码:
List<Appointment> acceptedAppointments = new Service1Client().getAllAcceptedAppointments();
获得所有接受的约会。
foreach (Appointment item in acceptedAppointments)
{
if (item.Appointment_DateTime.Date == myDate.Date)
{
if (myDate.AddHours(1) > item.Appointment_DateTime)
{
}
}
}
如果有人可以提供帮助,我不知道我需要在这里做什么,非常感谢!