예제 #1
0
 protected virtual void Init( )
 {
     ConnectionString = CloudConfigurationManager.GetSetting("app:PacsDataArchieve");
     StorageConection = CloudConfigurationManager.GetSetting("app:PacsStorageConnection");
     DataAccess       = new SqlObjectArchieveDataAccess(ConnectionString);
 }
예제 #2
0
 public DataAccessHelpers(string dbName)
 {
     //throw new NotImplementedException ( "specify a connection string below" ) ;
     //TODO: To run the test against a database, uncomment the line below and pass the connection string to your database
     DataAccess = new SqlObjectArchieveDataAccess("Data Source=(LocalDb)\\MSSQLLocalDB;AttachDbFilename=|DataDirectory|\\DB\\" + dbName + ";Initial Catalog=" + dbName + ";Integrated Security=True");
 }