コード例 #1
0
ファイル: AlbumApiController.cs プロジェクト: synweb/rocms
 public ResultModel AddImageToAlbum(int albumId, string imageId)
 {
     try
     {
         _albumService.AddImageToAlbum(albumId, imageId);
         return(ResultModel.Success);
     }
     catch (Exception e)
     {
         _logService.LogError(e);
         return(new ResultModel(e));
     }
 }