Ejemplo n.º 1
0
 public RegisterForm()
 {
     InitializeComponent();
     txtIDCard.LostFocus += txtIDCard_LostFocus;
     _registerBll         = new RegisterBll();
     _typeConfigBll       = new TypeConfigBll();
     _deptmentBll         = new DeptmentBll();
     _positionMethodBll   = new PositionMethodBll();
     btnRegister.Visible  = true;
     btnUpdate.Visible    = false;
 }
 /// <summary>
 ///  Initializes a new instance of the <see cref="RegisterController" /> class.
 /// </summary>
 /// <param name="register"></param>
 public RegisterController(IRegisterBll register)
 {
     _register = register;
 }
Ejemplo n.º 3
0
 public MainForm()
 {
     InitializeComponent();
     _registerBll   = new RegisterBll();
     _typeConfigBll = new TypeConfigBll();
 }