Initial commit of version 0.9.5.2; no older versions exist for this repo.

This commit is contained in:
2016-11-05 12:02:02 -05:00
parent ea2f5b8a59
commit 98b3626154
111 changed files with 97171 additions and 0 deletions
@@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace AdvertsingProfitControl
{
internal class AdItemCollectionModel
{
private readonly List<string> AdItemCollection = new List<string>();
private readonly AutoCompleteStringCollection TrimmedAdItemCollection = new AutoCompleteStringCollection();
private readonly AutoCompleteStringCollection UsedAdItemCollection = new AutoCompleteStringCollection();
public AdItemCollectionModel()
{
//Start with filling the AdItemCollection array with the items from the database.
var databaseTracker = new DatabaseTracker();
var databaseReader = new DatabaseReader();
AdItemCollection = databaseReader.GetAdItemsSuggestionList(databaseTracker.DatabaseConnectionString);
}
}
}