Esempio n. 1
0
        public async Task <HttpResponseMessage> GetCancelAndNotAttendedAppointmentsByEntitleId(Guid RequestId)
        {
            return(await ValidateAndHandleOperationExecutionAsync(async() =>
            {
                var result = await _calendarDomainService.GetCancelAndNotAttendedAppointmentsByRequestId(RequestId);

                return Request.CreateResponse(HttpStatusCode.OK, result);
            }));
        }