Ejemplo n.º 1
0
 public void TAdd(Gallery t)
 {
     _galleryDal.Add(t);
 }
 public IResult Add(GalleryImage galleryImage)
 {
     _galleryDal.Add(galleryImage);
     return(new SuccessResult(Messages.GalleryImageAdded));
 }
Ejemplo n.º 3
0
 public void AddImage(GalleryImage image)
 {
     _galleryDal.Add(image);
 }
 public IResult Add(Gallery gallery)
 {
     _galleryDal.Add(gallery);
     return(new SuccessResult());
 }