Changed database name

This commit is contained in:
kdeng00
2023-09-29 06:34:19 -04:00
parent f6afac5fd8
commit bc31f033fc
2 changed files with 13 additions and 10 deletions
+11
View File
@@ -0,0 +1,11 @@
using TextSender_API.Repositories;
public class BaseRepository
{
#region Fields
protected string _connectionString;
protected string _databaseName = "textSender";
protected string _tableName;
#endregion
}