public bool Insert(Image model) { try { return(imageDal.Insert(model)); } catch (Exception ex) { throw ex; } }
public void Add(Image image) { _imageDal.Insert(image); }