Skip to content

Commit

Permalink
Fixed build
Browse files Browse the repository at this point in the history
  • Loading branch information
falleretic committed Feb 1, 2024
1 parent e86868d commit 28158ec
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 26 deletions.
Original file line number Diff line number Diff line change
@@ -1,21 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Aspose.Words.ApiExamples.HelperClasses.TestClasses
namespace Aspose.Words.ApiExamples.HelperClasses.TestClasses
{
public class ShareQuoteTestClass
{
internal ShareQuoteTestClass(int date, int volume, double open, double high, double low, double close)
{
this.Date = date;
this.Volume = volume;
this.Open = open;
this.High = high;
this.Low = low;
this.Close = close;
Date = date;
Volume = volume;
Open = open;
High = high;
Low = low;
Close = close;
}

public string Color()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,21 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Aspose.Common;

namespace Aspose.Words.ApiExamples.HelperClasses.TestClasses
namespace Aspose.Words.ApiExamples.HelperClasses.TestClasses
{
public class ShareTestClass
{
internal ShareTestClass(string sector, string industry, string ticker, double weight, double delta)
{
this.Sector = sector;
this.Industry = industry;
this.Ticker = ticker;
this.Weight = weight;
this.Delta = delta;
Sector = sector;
Industry = industry;
Ticker = ticker;
Weight = weight;
Delta = delta;
}

public string Title()
Expand Down

0 comments on commit 28158ec

Please sign in to comment.