示例#1
0
文件: NotesBL.cs 项目: shiv-N/Fundoo
 /// <summary>
 /// Displays the archive.
 /// </summary>
 /// <param name="userId">The user identifier.</param>
 /// <returns></returns>
 public async Task <IList <DisplayResponceModel> > DisplayArchive(int userId)
 {
     try
     {
         return(await notes.DisplayArchive(userId));
     }
     catch (Exception e)
     {
         throw e;
     }
 }