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