Esempio n. 1
0
        public void LoadData(string practiceId)
        {
            ICashFlowManagerService service = new CashFlowManagerService();

            PracticeId = new Guid(practiceId);
            Clients = service.GetClients(PracticeId);

            Transactions = service.GetTransactions();
            BankAccounts = service.GetBankAccounts();
            PracticeId = new Guid(practiceId);
            PopulateClientPosition();
        }