예제 #1
0
 public async Task <HttpResponseMessage> GetMonths()
 {
     return(await ValidateAndHandleOperationExecutionAsync(async() =>
     {
         var res = await _calendarDomainService.GetMonths();
         return Request.CreateResponse(HttpStatusCode.OK, res);
     }));
 }