Ejemplo n.º 1
0
 public void SaveProductIdentity()
 {
     if (_productID == 0)
     {
         return;
     }
     UpdateObjectValue();
     if (isUpdate)
     {
         ProductIdentityBAL.UpdateProductIdentity(_productIdentity, Server.ConnectionString);
     }
     else
     {
         ProductIdentityBAL.InsertProductIdentity(_productIdentity, Server.ConnectionString);
     }
     LoadProductIdentity();
 }