Created approval reminder worker

This commit is contained in:
Chase Tucker
2024-09-09 10:00:49 -07:00
parent 0fdf8179e1
commit b9b0299d3f
13 changed files with 507 additions and 5 deletions

View File

@ -21,10 +21,6 @@ public class DbConnectionService : IDbConnectionService {
}
public IDbConnection GetConnection() {
if (_envName.ToLower().Equals("development")) {
return new SqliteConnection(_dbConnectionString);
} else {
return new SqlConnection(_dbConnectionString);
}
return new SqlConnection(_dbConnectionString);
}
}