public void DeleteInformationImg(string strwhere)
 {
     DAL.InformationVsImgDAL dal = new DAL.InformationVsImgDAL();
     dal.DeleteList(strwhere);
 }
 public void SaveInformationImg(Model.InformationVsImgModel model)
 {
     DAL.InformationVsImgDAL dal = new DAL.InformationVsImgDAL();
     dal.Add(model);
 }