예제 #1
0
        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();
 }