1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
| using System;
using System.Collections.Generic;
using System.Text;
namespace CS_BarcodeControlSample1
{
class Class1
{
//Déclaration des attributs, tu met ce dont tu as besoin
private int id;
private string name;
private string login;
private string pw;
private bool admin;
//Ton Constructeur, où tu passe en paramètre tes attributs
public Class1(int Pid, string Pname, string Plogin, string Ppw, bool Padmin)
{
id = Pid;
name = Pname;
login = Plogin;
pw = Ppw;
admin = Padmin;
}
//Ensuite les Accesseurs et mutateurs
public int Getid()//Tu pourra récupérer ton attribut grâce à cet accesseur
{
return id;
}
public void Setid(int Pid)//Tu pourra modifier ton attibut
{
id = Pid;
}
public string Getname()
{
return name;
}
public void Setname(string Pname)
{
name = Pname;
}
//Ainsi de suite avec tout tes attributs...
}
} |
Partager