Advertisement
Guest User

Untitled

a guest
May 24th, 2015
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.97 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace FunctionalProgramming
  8. {
  9.     internal class Student
  10.     {
  11.         public Student(string firstName,string lastName,int age,int facNum,string phone,string email,List<int> marks,int grpNumber)
  12.         {
  13.             this.FirstName = firstName;
  14.             this.LastName = lastName;
  15.             this.Age = age;
  16.             this.FacNum = facNum;
  17.             this.Phone = phone;
  18.             this.Email = email;
  19.             this.Marks = marks;
  20.             this.GrpNumber = grpNumber;
  21.         }
  22.         public string FirstName { get; set; }
  23.         public string LastName { get; set; }
  24.         public int Age { get; set; }
  25.         public int FacNum { get; set; }
  26.         public string Phone { get; set; }
  27.         public string Email { get; set; }
  28.         public List<int> Marks { get; set; }
  29.         public int GrpNumber { get; set; }
  30.     }
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement