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