-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b403822
commit fe2c7b8
Showing
11 changed files
with
1,190 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace FormApp | ||
{ | ||
class Etdiant | ||
{ | ||
|
||
public static int Cmp { get; set; } | ||
public int Id { get; set; } | ||
public string Nom { get; set; } | ||
public string Prenom { get; set; } | ||
public double Note { get; set; } | ||
|
||
// CONTRUCTORS | ||
public Etdiant(string nom, string prenom, double note) { | ||
this.Id = ++Cmp; | ||
this.Nom = nom; | ||
this.Prenom = prenom; | ||
this.Note = note; | ||
} | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.