Beispiel #1
0
        public static void ImportExps(string filePath, InterfaceFinance intFin)
        {
            ParserCreditAgricole.Process(filePath);

            intFin.CurrentActivity.ListCRE.AddRange(ParserCreditAgricole.ExtractedActivity.ListCRE);
            intFin.CurrentActivity.ListCRI.AddRange(ParserCreditAgricole.ExtractedActivity.ListCRI);
        }
Beispiel #2
0
 public ExpsDelete(InterfaceFinance intfnc, CRE exps)
 {
     _intFnc          = intfnc;
     _currentMovement = new CRE();
     InitializeComponent();
     LoadMovementList();
     Display(exps);
 }
Beispiel #3
0
 public ExpsDelete(InterfaceFinance intfnc)
 {
     _intFnc          = intfnc;
     _currentMovement = new CRE();
     InitializeComponent();
     LoadMovementList();
     comboBoxListMovements.SelectedItem = comboBoxListMovements.Items[0];
 }
Beispiel #4
0
 public ExpsDelete(InterfaceFinance intfnc, int?expsId)
 {
     _intFnc          = intfnc;
     _currentMovement = new CRE();
     InitializeComponent();
     LoadMovementList();
     if (expsId != null)
     {
         Display(expsId);
     }
     else
     {
         return;
     }
 }
Beispiel #5
0
 public ExpsEdit(InterfaceFinance intFnc, string picPath)
 {
     _intFnc = intFnc;
     InitializeComponent();
     checkBoxNewMovement.Checked = true;
     textBoxBillPath.Text        = picPath;
     _expsNew = new CRE();
     LoadPrj(null);
     _expsCurrent = _expsNew;
     if (!string.IsNullOrEmpty(picPath))
     {
         LoadPicture();
     }
     this.comboBoxMovement.SelectedValueChanged += new System.EventHandler(this.comboBoxMovement_SelectionChanged);
 }
Beispiel #6
0
 public ExpsEdit(InterfaceFinance intFnc, int?expsId)
 {
     _intFnc = intFnc;
     InitializeComponent();
     LoadPrj(expsId);
     _expsNew = new CRE();
     if (expsId != null)
     {
         textBoxMovementName.Visible = false;
         buttonValidateMovement.Text = "Update movement";
         checkBoxNewMovement.Checked = false;
     }
     else
     {
         _expsCurrent = _expsNew;
         checkBoxNewMovement.Checked = true;
     }
     this.comboBoxMovement.SelectedValueChanged += new System.EventHandler(this.comboBoxMovement_SelectionChanged);
 }
Beispiel #7
0
 public ViewWelcome(InterfaceFinance intFnc)
 {
     _intFnc = intFnc;
     InitializeComponent();
     Init();
 }
 public DeviseEdition(InterfaceFinance intfn)
 {
     _ifn = intfn;
     InitializeComponent();
     InitData();
 }
 public ViewBillDetails(InterfaceFinance intFin)
 {
     _intFin = intFin;
     InitializeComponent();
     Init();
 }
 public PanelFinance(InterfaceFinance intFnc)
 {
     _intFnc = intFnc;
     InitializeComponent();
 }
Beispiel #11
0
 public ViewMenu(InterfaceFinance intFnc)
 {
     _intFnc = intFnc;
     InitializeComponent();
 }