Пример #1
0
        public static void SisByteBank()
        {
            SistemaInterno sis = new SistemaInterno();

            Diretor dir = new Diretor("111.212.363.90", 5000);

            dir.Nome  = "Camila Fernandez";
            dir.Senha = "123";

            sis.Login(dir, dir.Senha);

            ParceiroComercial par = new ParceiroComercial();

            par.Senha = "321";

            sis.Login(par, par.Senha);
        }