Example #1
0
 public BookManagement(Run run)
 {
     this.run  = run;
     print     = new Print(run);
     exception = new Exception();
     sd        = SharingData.GetInstance();
 }
Example #2
0
 public MemberManagement(Run run)
 {
     exception = new Exception();
     print     = new Print(run);
     sd        = SharingData.GetInstance();
     this.run  = run;
 }
Example #3
0
 public static SharingData GetInstance()
 {
     if (sdata == null)
     {
         sdata = new SharingData();
     }
     return(sdata);
 }
 public Exception()
 {
     print = new Print();
     sd    = SharingData.GetInstance();
 }
 public Print(Run run)
 {
     sd       = SharingData.GetInstance();
     this.run = run;
 }
 public Print()
 {
     sd = SharingData.GetInstance();
 }