public async Task <IHttpActionResult> DeleteCalendarEvent(DeleteViewModel model) { await _systemService.DeleteCalendarEventAsync(model.Id); return(Ok(new OperationResult { success = true })); }