Ejemplo n.º 1
0
        public static int?AddPhoto(int id, string path)
        {
            PhotoRepository photoRep = new PhotoRepository();

            photoRep.Create(new Photo
            {
                PetId = id,
                Path  = path
            });
            return(photoRep.FindPhoto(id, path));
        }