Skip to content

Commit

Permalink
License header
Browse files Browse the repository at this point in the history
  • Loading branch information
mstama committed Jul 27, 2017
1 parent 986f939 commit e6fe917
Show file tree
Hide file tree
Showing 34 changed files with 134 additions and 32 deletions.
5 changes: 4 additions & 1 deletion Merchant/Exceptions/MerchantException.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using System;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using System;

namespace Merchant.Exceptions
{
Expand Down
5 changes: 4 additions & 1 deletion Merchant/Exceptions/RateCalculatorException.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using System;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using System;

namespace Merchant.Exceptions
{
Expand Down
5 changes: 4 additions & 1 deletion Merchant/Exceptions/RomanDigitException.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using System;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using System;

namespace Merchant.Exceptions
{
Expand Down
5 changes: 4 additions & 1 deletion Merchant/Extensions/ICollectionExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using System.Collections;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using System.Collections;

namespace Merchant.Extensions
{
Expand Down
5 changes: 4 additions & 1 deletion Merchant/Extensions/StringExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using System;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using System;

namespace Merchant.Extensions
{
Expand Down
5 changes: 4 additions & 1 deletion Merchant/Interfaces/ICommandParser.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Merchant.Models;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using Merchant.Models;

namespace Merchant.Interfaces
{
Expand Down
5 changes: 4 additions & 1 deletion Merchant/Interfaces/ICommandVisitor.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Merchant.Models;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using Merchant.Models;

namespace Merchant.Interfaces
{
Expand Down
5 changes: 4 additions & 1 deletion Merchant/Interfaces/IConverter.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
namespace Merchant.Interfaces
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

namespace Merchant.Interfaces
{
/// <summary>
/// Interface for the converters
Expand Down
5 changes: 4 additions & 1 deletion Merchant/Interfaces/IMapConverter.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
namespace Merchant.Interfaces
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

namespace Merchant.Interfaces
{
/// <summary>
/// Interface for the converters
Expand Down
5 changes: 4 additions & 1 deletion Merchant/Interfaces/IRateCalculator.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
namespace Merchant.Interfaces
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

namespace Merchant.Interfaces
{
/// <summary>
/// Interface for the rate calculator
Expand Down
5 changes: 4 additions & 1 deletion Merchant/Models/Commands/Command.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Merchant.Interfaces;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using Merchant.Interfaces;

namespace Merchant.Models
{
Expand Down
5 changes: 4 additions & 1 deletion Merchant/Models/Commands/ManyQueryCommand.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Merchant.Interfaces;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using Merchant.Interfaces;

namespace Merchant.Models
{
Expand Down
5 changes: 4 additions & 1 deletion Merchant/Models/Commands/MapCommand.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Merchant.Interfaces;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using Merchant.Interfaces;

namespace Merchant.Models
{
Expand Down
5 changes: 4 additions & 1 deletion Merchant/Models/Commands/MuchQueryCommand.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Merchant.Interfaces;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using Merchant.Interfaces;

namespace Merchant.Models
{
Expand Down
5 changes: 4 additions & 1 deletion Merchant/Models/Commands/NullCommand.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Merchant.Interfaces;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using Merchant.Interfaces;

namespace Merchant.Models
{
Expand Down
5 changes: 4 additions & 1 deletion Merchant/Models/Commands/RateCommand.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Merchant.Interfaces;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using Merchant.Interfaces;

namespace Merchant.Models
{
Expand Down
5 changes: 4 additions & 1 deletion Merchant/Models/Commands/UnknownCommand.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Merchant.Interfaces;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using Merchant.Interfaces;

namespace Merchant.Models
{
Expand Down
5 changes: 4 additions & 1 deletion Merchant/Models/RomanDigits/RomanDigit.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Merchant.Exceptions;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using Merchant.Exceptions;
using System;

namespace Merchant.Models
Expand Down
5 changes: 4 additions & 1 deletion Merchant/Models/RomanDigits/RomanDigitFactory.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Merchant.Exceptions;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using Merchant.Exceptions;
using System;
using System.Collections.Generic;

Expand Down
5 changes: 4 additions & 1 deletion Merchant/Models/RomanDigits/RomanDigits.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
namespace Merchant.Models
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

namespace Merchant.Models
{
public class RomanDigitC : RomanDigit
{
Expand Down
5 changes: 4 additions & 1 deletion Merchant/Program.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Merchant.Exceptions;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using Merchant.Exceptions;
using Merchant.Extensions;
using Merchant.Interfaces;
using Merchant.Models;
Expand Down
5 changes: 4 additions & 1 deletion Merchant/Services/CommandParser.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Merchant.Extensions;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using Merchant.Extensions;
using Merchant.Interfaces;
using Merchant.Models;
using System;
Expand Down
5 changes: 4 additions & 1 deletion Merchant/Services/CommandRegexParser.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Merchant.Interfaces;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using Merchant.Interfaces;
using Merchant.Models;
using System;
using System.Text.RegularExpressions;
Expand Down
5 changes: 4 additions & 1 deletion Merchant/Services/CommandVisitor.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Merchant.Interfaces;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using Merchant.Interfaces;
using Merchant.Models;
using System;

Expand Down
5 changes: 4 additions & 1 deletion Merchant/Services/MapTextConverter.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Merchant.Interfaces;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using Merchant.Interfaces;
using System;
using System.Collections.Generic;
using System.Text;
Expand Down
5 changes: 4 additions & 1 deletion Merchant/Services/RateCalculator.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Merchant.Exceptions;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using Merchant.Exceptions;
using Merchant.Interfaces;
using System;
using System.Collections.Generic;
Expand Down
5 changes: 4 additions & 1 deletion Merchant/Services/RomanNumberConverter.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Merchant.Exceptions;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using Merchant.Exceptions;
using Merchant.Interfaces;
using Merchant.Models;

Expand Down
5 changes: 4 additions & 1 deletion UnitTests/CommandParserTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Merchant.Models;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using Merchant.Models;
using Merchant.Services;
using System;
using Xunit;
Expand Down
5 changes: 4 additions & 1 deletion UnitTests/CommandRegexParserTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Merchant.Models;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using Merchant.Models;
using Merchant.Services;
using System;
using Xunit;
Expand Down
5 changes: 4 additions & 1 deletion UnitTests/CommandVisitorTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Merchant.Models;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using Merchant.Models;
using Merchant.Services;
using Xunit;

Expand Down
5 changes: 4 additions & 1 deletion UnitTests/MapTextConverterTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Merchant.Services;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using Merchant.Services;
using Xunit;

namespace UnitTests
Expand Down
5 changes: 4 additions & 1 deletion UnitTests/RateConverterTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Merchant.Services;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using Merchant.Services;
using Xunit;

namespace UnitTests
Expand Down
3 changes: 3 additions & 0 deletions UnitTests/RomanNumberConverterTests.Data.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using System.Collections.Generic;

namespace UnitTests
Expand Down
3 changes: 3 additions & 0 deletions UnitTests/RomanNumberConverterTests.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using Merchant.Exceptions;
using Merchant.Services;
using Xunit;
Expand Down

0 comments on commit e6fe917

Please sign in to comment.