public override Response NewResponse(XmlNode responseNode) { var calItemId = XmlUtil.AttributeValue(responseNode.Attributes, MailService.A_CAL_ITEM_ID); var inviteMessageId = XmlUtil.AttributeValue(responseNode.Attributes, MailService.A_INV_ID); var appResponse = new AppointmentResponse { Id = calItemId, InviteMessageId = inviteMessageId }; var res = new CreateAppointmentResponse(appResponse); res.ResponseNode = responseNode; return(res); }
public CreateAppointmentResponse(AppointmentResponse appRes) { AppointmentResponse = appRes; }