public IEnumerable <GetPicture> ListAll()
        {
            var getAll = _pictureManager.GetAll().ToList();
            List <GetPicture> output = Mapper.Map <List <Picture>, List <GetPicture> >(getAll);

            return(output);
        }