コード例 #1
0
        public void GetAllPicturesTest()
        {
            var data = _pictureRepository.GetAll();

            Assert.True(data != null);
            Assert.True(data.Count() == 8);
        }
コード例 #2
0
ファイル: PictureService.cs プロジェクト: MattZK/iot18-lf1
 public List <Picture> GetAll()
 {
     return(_pictureRepository.GetAll());
 }