コード例 #1
0
ファイル: App.xaml.cs プロジェクト: Nitue/IIO13200_NET_15S
        protected override void OnStartup(StartupEventArgs e)
        {
            base.OnStartup(e);

            SqlConnection connection = new SqlConnection(System.Configuration.ConfigurationManager.AppSettings["connectionString"]);
            AttendanceMapper mapper = new AttendanceMapper(connection);
            AttendanceService service = new AttendanceService(mapper);

            MainWindow view = new MainWindow(service);
            view.Show();
        }
コード例 #2
0
 public AttendanceService(AttendanceMapper mapper) {
     this.mapper = mapper;
 }