Example #1
0
 public Employee(string fullName, int specialty, int experience)
 {
     this.FullName   = fullName;
     this.Specialty  = specialty;
     this.Experience = experience;
     this.ID         = IDCalculator.GetID();
 }
Example #2
0
 public Deal(int customer, int employee, int level, int type)
 {
     this.Customer          = customer;
     this.Employee          = employee;
     this.HopelessnessLevel = level;
     this.AgreementType     = type;
     this.ID = IDCalculator.GetID();
 }
Example #3
0
 public Deal()
 {
     this.ID = IDCalculator.GetID();
 }
Example #4
0
 public Employee()
 {
     this.ID = IDCalculator.GetID();
 }