diff --git a/ShippingCosts/Implementations/SelfPickup.cs b/ShippingCosts/Implementations/SelfPickup.cs index 6f2a660..b16a0ce 100644 --- a/ShippingCosts/Implementations/SelfPickup.cs +++ b/ShippingCosts/Implementations/SelfPickup.cs @@ -7,7 +7,7 @@ namespace ShippingCosts.Implementations; /// 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; }