public Offer(string name, string description, OfferType type, decimal price, Company company) { Name = name; Description = description; Type = type; Price = price; Company = company; }
public Offer(string name, OfferType type, string description, Company company, double price) { Name = name; Type = type; Description = description; Company = company; Price = price; }