From c131dd2eb443b694d5d9aa128a411464086b63be Mon Sep 17 00:00:00 2001 From: Garritt McCune Date: Mon, 20 Feb 2017 18:20:12 -0600 Subject: [PATCH] Removed AditemCollectionModel as the code was never used. I don't even remember how I thought it would be useful. --- .../AdItemCollectionModel.cs | 25 ------------------- 1 file changed, 25 deletions(-) delete mode 100644 AdvertsingProfitControl/AdItemCollectionModel.cs diff --git a/AdvertsingProfitControl/AdItemCollectionModel.cs b/AdvertsingProfitControl/AdItemCollectionModel.cs deleted file mode 100644 index 2462cab..0000000 --- a/AdvertsingProfitControl/AdItemCollectionModel.cs +++ /dev/null @@ -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 AdItemCollection = new List(); - 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); - - } - } -}