コード例 #1
0
            public void AppointmentDateChangedByInitiator(AppointmentDTO appointmentDTO)
            {
                var appointmentNotification = _iAppointmentBus.UpdateAppointmentDateChangedByOwner(appointmentDTO);
                var send = JsonConvert.SerializeObject(appointmentNotification);

                _clients.FirstOrDefault(r => ((AppointmentWebSocketHandler)r)._userId == appointmentDTO.InitiatorId).Send(send);
            }