Example #1
0
 /// <summary>
 /// Initiate a new DataProvider instance with the given Database Context
 /// </summary>
 /// <param name="dbContext">Database Context to utilize in the connection</param>
 public ICDSqliteProvider(IICDContext dbContext)
 {
     if (dbContext == null)
     {
         throw new ArgumentNullException("dbContext is Null");
     }
     m_DbContext = dbContext;
 }