public Product(decimal price, string status, int idProductInformation) { Price = price; IdProductInformation = idProductInformation; ProductStatus = new ProductStatus(status); ProductInformation = null; }
public Product(decimal price, ProductStatus status, ProductInformation productInformation) { Price = price; //Status = status.GetStatusName(); ProductInformation = productInformation; if (productInformation?.IdEntity != null) { IdProductInformation = productInformation.IdEntity.Value; } ProductStatus = status; }