Rearrange Low level diagrams into a folder.

This commit is contained in:
Lunastra 2021-12-12 22:42:20 -08:00
parent e8d42bf98f
commit a76603f00c
19 changed files with 19 additions and 2 deletions

View File

@ -12,6 +12,10 @@ namespace TeamHobby.HobbyProjectGenerator.Archive
_conn = dataSource;
}
//public IDataSource<string> GetConnection()
//{
// return _conn;
//}
// Create the folder where the compress file will be stored
public bool CreateArchiveFolder(){

View File

@ -75,8 +75,21 @@ namespace TeamHobby.HobbyProjectGenerator.ArchiveTests
}
public void FolderCreationFailed()
public void CopyingToAFileTest(IDataSource<string> sqlDAO)
{
// Arrange
ArchiveManager archiveManager = new ArchiveManager(sqlDAO);
SqlDAO sqlDS = null;
if (sqlDAO.GetType() == typeof(SqlDAO))
{
sqlDS = (SqlDAO)sqlDAO;
}
// Act
// Assert
}

View File

@ -31,7 +31,7 @@ namespace TeamHobby.HobbyProjectGenerator.DataAccess
// Getter and setter for Odbc
public OdbcConnection Connection { get; set; }
public OdbcConnection getConnection()
public OdbcConnection GetConnection()
{
return _conn;
}

View File

Before

Width:  |  Height:  |  Size: 544 KiB

After

Width:  |  Height:  |  Size: 544 KiB

View File

Before

Width:  |  Height:  |  Size: 92 KiB

After

Width:  |  Height:  |  Size: 92 KiB

View File

Before

Width:  |  Height:  |  Size: 74 KiB

After

Width:  |  Height:  |  Size: 74 KiB