AppActs.Client.Repository.SqlServer.MSTest.TileRepositoryIntegration.TilesDontThrowDataAccessLayerException C# (CSharp) Method

TilesDontThrowDataAccessLayerException() private method

private TilesDontThrowDataAccessLayerException ( ) : void
return void
        public void TilesDontThrowDataAccessLayerException()
        {
            //ITileFactory iTileFactory = new TileTypeFactory();
            //ITileRepository iTiledal = new TileRepository(this.connectionString);

            //foreach (KeyValuePair<Guid, string> key in Dictionaries.TileToStoreProcedure)
            //{
            //    ITile iTile = iTileFactory.Create(key.Key);

            //    if (iTile is ITileWithTrend)
            //    {
            //        iTile = iTiledal.Load(iTile, key.Key, applicationId, dateStart, dateEnd, dateStartCompare, dateEndCompare);
            //    }
            //    else
            //    {
            //        iTile = iTiledal.Load(iTile, key.Key, applicationId, dateStart, dateEnd);
            //    }
            //}
            throw new NotImplementedException();
        }