示例#1
0
文件: Tests.cs 项目: yayaritaa/Europa
        public CategoryDataSourceTests()
        {
            var config = new Configuration();

            _helper = new Helper(config);
            _helper.Setup(TestData.FileName);

            // sut
            _sut = new CategoryDataSource(new NpgsqlConnection(config.ConnectionString));
        }
示例#2
0
 public CategoryService(ICategoryDataSource dataSource)
 {
     _dataSource = dataSource;
 }
 public GetCategoriesQueryHandler(ICategoryDataSource dataSource)
 {
     _dataSource = dataSource;
 }