Example #1
0
 public static Moeda ObterMoeda(int codigo)
 {
     return(MoedaRepository.ObterMoeda(codigo));
 }
Example #2
0
        public static Moeda ObterMoeda(string sigla)
        {
            sigla = sigla.ToUpper();

            return(MoedaRepository.ObterMoeda(sigla));
        }