From ed9908d01132ebbc419b32b8ea3e827cc28fae9f Mon Sep 17 00:00:00 2001 From: MarcUs7i <96580944+MarcUs7i@users.noreply.github.com> Date: Fri, 9 May 2025 10:27:04 +0200 Subject: [PATCH] Implemented SelfPickup.cs --- ShippingCosts/Implementations/SelfPickup.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }