Пример #1
0
 private string CreateNotificationText(UpdateAppointment message)
 {
     return("Вы записаны к доктору " + message.Doctor + " на " + message.DateTime.ToLongDateString() + ". Не опаздывайте");
 }
Пример #2
0
        public void Update([FromBody] UpdateAppointment appointment)
        {
            var res = appointment;

            //Update DB
        }