Exemplo n.º 1
0
 public AddEmployeeReimbursePresenter(Account loginUser, IEmployeeReimburseView iEmployeeReimburseView) : base(loginUser)
 {
     _ReimburseAddPresenter  = new ReimburseAddPresenter(loginUser, iEmployeeReimburseView.IReimburseView);
     _IEmployeeReimburseView = iEmployeeReimburseView;
 }
Exemplo n.º 2
0
 public ReimburseAuditingPresenter(int reimburseID, Account loginuser, IEmployeeReimburseView iEmployeeReimburseView)
 {
     _ReimburseID            = reimburseID;
     _IEmployeeReimburseView = iEmployeeReimburseView;
     _Loginuser = loginuser;
 }
Exemplo n.º 3
0
 public ReimburseItemEventsHandler(IEmployeeReimburseView iEmployeeReimburseView)
 {
     _IEmployeeReimburseView = iEmployeeReimburseView;
     SwitchReimburseItemPresenter();
     AttachViewEvent();
 }
Exemplo n.º 4
0
 public UpdateEmployeeReimbursePresenter(int reimburseID, Account loginUser, IEmployeeReimburseView iEmployeeReimburseView)
 {
     _ReimburseUpdatePresenter = new ReimburseUpdatePresenter(reimburseID, loginUser, iEmployeeReimburseView.IReimburseView);
     _IEmployeeReimburseView   = iEmployeeReimburseView;
 }
Exemplo n.º 5
0
 public DetailEmployeeReimbursePresenter(int reimburseID, IEmployeeReimburseView iEmployeeReimburseView)
 {
     _ReimburseDetailPresenter = new ReimburseDetailPresenter(reimburseID, iEmployeeReimburseView.IReimburseView);
     _IEmployeeReimburseView   = iEmployeeReimburseView;
 }