public void Delete(CatalogImage Obj)
 {
     Obj.EraseFiles();
     this.DBLocal.CatalogImage.DeleteOnSubmit(Obj);
     this.Save();
 }
 public void Add(CatalogImage Obj)
 {
     this.DBLocal.CatalogImage.InsertOnSubmit(Obj);
     this.Save();
 }