20 lines
437 B
C#
20 lines
437 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AdvertsingProfitControl
|
|
{
|
|
class DataBaseReader
|
|
{
|
|
private string gConnectionString = "";
|
|
|
|
public DataBaseReader(string databaseLocation)
|
|
{
|
|
//Grab the location of the database.
|
|
gConnectionString = gDatabaseLocation;
|
|
}
|
|
}
|
|
}
|