示例#1
0
 ////public static int Numb;
 //static Employee()
 //{
 //    //Numb = 10;
 //    MessageBox.Show("Static construct");
 //}
 #endregion
 public Employee()
 {
     Id = SequentialGuidGenerator.CreateGuid();
 }
示例#2
0
 public void DBFiles_Guid_Test_01_Generate1()
 {
     Console.Out.WriteLine(gen.CreateGuid().ToString());
 }
示例#3
0
 public Branch()
 {
     Id        = SequentialGuidGenerator.CreateGuid();
     Employees = new List <Employee>();
 }