Code cleanup.
Some checks failed
Build .NET Project / build (push) Has been cancelled

This commit is contained in:
2026-03-24 13:36:11 -04:00
parent 3bf89b97e8
commit 70f9af5934
3 changed files with 23 additions and 0 deletions

View File

@@ -29,21 +29,25 @@ namespace MarketData.MarketDataModel
public CompanyProfile()
{
}
public String Industry
{
get { return industry; }
set { industry = value; }
}
public String Sector
{
get { return sector; }
set { sector = value; }
}
public String SecurityType
{
get { return securityType;; }
set { securityType = value; }
}
public bool IsEquity
{
get
@@ -51,30 +55,36 @@ namespace MarketData.MarketDataModel
return null!=SecurityType && SecurityType.Equals("EQUITY");
}
}
public String CompanyName
{
get{return companyName;}
set{companyName=value;}
}
public String Description
{
get{return description;}
set{description=value;}
}
public String Symbol
{
get { return symbol; }
set { symbol = value; }
}
public String PricingSource
{
set{pricingSource=value;}
}
public bool CanRollPrevious
{
get{return canRollPrevious;}
set{canRollPrevious=value;}
}
public bool FreezePricing
{
get{return freezePricing;}