コード例 #1
0
ファイル: RDP.cs プロジェクト: mkokosinski/SerwisMaster
        public Rdp(string nazwa, string group, string opis, string haslo, string typ, string adresRDP, string login, string id = "", object parent = null)
            : base(nazwa, group, opis, haslo, typ, id, parent)
        {
            this.adresRDP = adresRDP;
            this.login    = login;

            Header = CreateHeader.createItemHeader(this);
        }
コード例 #2
0
        public Rdp(string nazwa, string kluczRodzica, string opis, string haslo, string adresRDP, string login, string klucz = "", object parent = null)
            : base(nazwa, kluczRodzica, opis, haslo, klucz, parent)
        {
            this.Rodzaj   = Models.RodzajElementu.Rdp;
            this.adresRDP = adresRDP;
            this.login    = login;

            Header = CreateHeader.createItemHeader(this);
        }