public void Save()
 {
     using (B2BProductCatalog database = new B2BProductCatalog())
     {
         database.MarketingInfoCollection.Update(this);
     }
 }
 public void Insert()
 {
     using (B2BProductCatalog database = new B2BProductCatalog())
     {
         database.MarketingInfoCollection.Insert(this);
     }
 }