public PhotographerModel AddAndReturnPhotographer(List <string> data)
        {
            PhotographerModel newPhotographer = _DataAccessLayer.AddAndReturnPhotographer(data[0], data[1], data[2], data[3]);

            //Console.WriteLine("newPhotographer im BL, ID: " + newPhotographer.ID);
            return(newPhotographer);
        }