Implemented SelfPickup.cs

This commit is contained in:
MarcUs7i 2025-05-09 10:27:04 +02:00
parent 72d1ce88be
commit ed9908d011

View file

@ -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;
}