public void SetUp()
        {
            _connectionstringArgumentsMapper = MockRepository.GenerateStub<IConnectionstringArgumentsMapper>();

            _databaseSchemaExplorer = MockRepository.GenerateStub<IDatabaseSchemaExplorer>();
        }
コード例 #2
0
 public DatabaseSchemaExplorerController(IConnectionstringArgumentsMapper connectionstringArgumentsMapper, IDatabaseSchemaExplorer schemaExplorer)
 {
     _connectionstringArgumentsMapper = connectionstringArgumentsMapper;
     _schemaExplorer = schemaExplorer;
 }