コード例 #1
0
ファイル: HomeController.cs プロジェクト: dwlodarz/MoqExample
 public bool CheckTheSampleModel(SampleComplexType input)
 {
     try
     {
         return(_dataRepository.CheckTheComplexType(input));
     }
     catch (NotSupportedException e)
     {
         throw new NotImplementedException(e.Message);
     }
 }