public async Task <IActionResult> DeleteDiary(int Id)
 {
     return(Ok(await _diaryService.DeleteDiary(Id)));
 }