Inheritance: IEmployee
Example #1
0
 public override void InsertObject(uint index)
 {
     var employee = new Employee
     { 
         Name = BenchmarkBase.NameValue(index),
         Age = BenchmarkBase.AgeValue(index),
         IsHired = BenchmarkBase.IsHiredValue(index)
     };
     this.connection.Insert(employee);
 }