static void Main(string[] args) { var trechos = new TrechosServicos(); string encomenda = "WS BC"; Entrega entrega = new Entrega(trechos); string resultado = entrega.rota(encomenda); System.Console.WriteLine("\nResultado FInal:\n" + resultado); }
public Entrega(TrechosServicos trechosServicos) { _trechosServicos = trechosServicos; }