Skip to content

Commit

Permalink
Final
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahmed-Achtatar committed Nov 29, 2021
1 parent b403822 commit fe2c7b8
Show file tree
Hide file tree
Showing 11 changed files with 1,190 additions and 2 deletions.
26 changes: 26 additions & 0 deletions FormApp/Etdiant.cs
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;
}
}
}
215 changes: 215 additions & 0 deletions FormApp/Form1.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit fe2c7b8

Please sign in to comment.