Beispiel #1
0
        public List <Photo> ShowPurchasedPhotos(int id)
        {
            List <Photo> purPhotos = new List <Photo>();

            Logger.InitLogger();
            try
            {
                purPhotos = _photoDao.ShowPurchasedPhotos(id);
            }
            catch (Exception e)
            {
                Logger.Log.Error(e.Message);
            }
            return(purPhotos);
        }