コード例 #1
0
 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);
 }