コード例 #1
0
        public static void SystemInternal()
        {
            SystemInternal systemInternal = new SystemInternal();
            Director       director       = new Director("22211212121");

            director.Name     = "Teste";
            director.password = "******";

            Manager manager = new Manager("22211212121");

            manager.Name     = "Teste manager";
            manager.password = "******";
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: tarsimoes/bank
        public static void SystemInternal()
        {
            SystemInternal systemInternal = new SystemInternal();

            Director director = new Director("123.456.789-01");

            director.name     = "Taynara";
            director.password = "******";

            AccountManager accountManager = new AccountManager("12343212354");

            accountManager.name     = "Gustavo";
            accountManager.password = "******";


            systemInternal.Login(director, "123654");
        }