コード例 #1
0
 public void RemoveTag(int id)
 {
     try
     {
         tagRepo.RemoveTag(id);
     }
     catch (DALException ex)
     {
         throw new ServiceException($"DAL exception : {ex.Message}");
     }
 }