public async Task <HttpResponseMessage> DeleteNonLaboraleDays(HorarioDiaEspecialDTO specialDay) { return(await HandleOperationExecutionAsync(async() => { var result = await _calendarDomainService.DeleteNonLaboraleOEspecialDaysAsync(specialDay); return Request.CreateResponse(HttpStatusCode.OK, result); })); }