Removed AditemCollectionModel as the code was never used. I don't even remember how I thought it would be useful.

This commit is contained in:
2017-02-20 18:20:12 -06:00
parent 02fbc253d6
commit c131dd2eb4
@@ -1,25 +0,0 @@
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);
}
}
}