コード例 #1
0
ファイル: MainForm.cs プロジェクト: Kozogin/Laboratory
 public MainForm()
 {
     InitializeComponent();
     OrgServise    = new OrganizationService();
     DiaAllService = new DiagnosisAllService();
     traService    = new TransactionService();
 }
コード例 #2
0
ファイル: MainForm.cs プロジェクト: Kozogin/Laboratory
 public MainForm(CreateForm f)
 {
     InitializeComponent();
     OrgServise    = new OrganizationService();
     DiaAllService = new DiagnosisAllService();
     traService    = new TransactionService();
     //f.BackColor = Color.Green;
 }
コード例 #3
0
ファイル: CreateForm.cs プロジェクト: Kozogin/Laboratory
 public CreateForm(MainForm f)
 {
     InitializeComponent();
     orgService      = new OrganizationService();
     catService      = new CategoryService();
     diaService      = new DiagnosisAllService();
     diagnosisDelete = new SortedSet <string>();
     //f.BackColor = Color.Yellow;
 }