コード例 #1
0
        public async Task <IHttpActionResult> DeleteCalendarEvent(DeleteViewModel model)
        {
            await _systemService.DeleteCalendarEventAsync(model.Id);

            return(Ok(new OperationResult {
                success = true
            }));
        }