コード例 #1
0
        public LoginForm(MainProcessForm mp)
        {
            _mp = mp;
            InitializeComponent();

            _systemUserSvc = new SystemUserService(new eFormSqlCeContext());
            _profileSvc    = new ProfileInfoService(new eFormSqlCeContext());
        }
コード例 #2
0
 public ProfileInfoController()
 {
     _profileService = new ProfileInfoService(new eFormSqlServerContext());
 }
コード例 #3
0
 public ProfileInfoController()
 {
     _profileService = new ProfileInfoService(new eFormSqlServerContext());
 }
コード例 #4
0
 public ProfileInfoController(IProfileInfoService service)
 {
     _service = service;
 }