using System.Collections.Generic;
namespace BlueWest.Data
{
public partial class Product
public string Name { get; set; }
public Industry Industry { get; set; }
public List<Company> Seller { get; set; }
public Product()
}