Implemented SelfPickup.cs
This commit is contained in:
parent
72d1ce88be
commit
ed9908d011
1 changed files with 2 additions and 2 deletions
|
|
@ -7,7 +7,7 @@ namespace ShippingCosts.Implementations;
|
|||
/// </summary>
|
||||
public sealed class SelfPickup : IShippingCostCalculator
|
||||
{
|
||||
public string CarrierName => string.Empty; // TODO
|
||||
public string CarrierName => "Self Pickup";
|
||||
|
||||
public decimal? CalculateShippingCosts(string targetCountry, IMeasuredBox box) => -1M; // TODO
|
||||
public decimal? CalculateShippingCosts(string targetCountry, IMeasuredBox box) => 0M;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue