Esempio n. 1
0
        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);
        }
Esempio n. 2
0
 public Entrega(TrechosServicos trechosServicos)
 {
     _trechosServicos = trechosServicos;
 }