public async Task <HttpResponseMessage> GetSpecialDayScheduleByDelegationId(int delegationId) { return(await ValidateAndHandleOperationExecutionAsync(async() => { var result = await _calendarDomainService.GetSpecialDayScheduleByDelegationId(delegationId); return Request.CreateResponse(HttpStatusCode.OK, result); })); }