示例#1
0
 /// <summary>
 ///Delete one record from story by Story Id
 /// </summary>
 /// <param name="storyId"></param>
 public void DeleteByStoryId(int?storyId)
 {
     if (storyId != null)
     {
         _storyRepository.DeleteByStoryId(storyId);
     }
 }