コード例 #1
0
ファイル: DataTest.cs プロジェクト: Profilan/APIWoood
        public void SellingPointList()
        {
            var rep = new SellingPointRepository();

            var sellingPoints = rep.List();

            sellingPoints.Should().NotBeNull();
        }
コード例 #2
0
 public SellingPointController() : base()
 {
     sellingPointRepository = new SellingPointRepository();
     logger = new SystemLogger();
 }