Esempio n. 1
0
        public static bool GetCardUseInfo(long card, ushort RestCode, byte UnitNo)
        {
            ushort restCode = Convert.ToUInt16(RestCode);
            byte   unitNo   = Convert.ToByte(UnitNo);

            return(RKeeperApi.getCardUseInfo(card, restCode, unitNo, ref CardUseInfo));
        }
Esempio n. 2
0
 public static void GetAllAccounts()
 {
     if (ListAllAccountInfo == null)
     {
         ListAllAccountInfo = new List <TAccountInfo>();
     }
     ListAllAccountInfo.Clear();
     RKeeperApi.GetAllAccounts(ref ListAllAccountInfo);
 }
Esempio n. 3
0
 public static void GetFindAccounts(string mask)
 {
     if (ListFindAccounts == null)
     {
         ListFindAccounts = new List <TFindAccounts>();
     }
     ListFindAccounts.Clear();
     RKeeperApi.getFindAccounts(mask, ref ListFindAccounts);
 }
Esempio n. 4
0
        public static bool InitDialog(string userName, string password)
        {
            RKeeper.UserName = userName;
            RKeeper.Password = password;

            IsOpen = RKeeperApi.setLogin(UserName, Password);

            return(IsOpen);
        }
Esempio n. 5
0
 public static void GetAllTransactions(DateTime dtBegin, DateTime dtEnd)
 {
     if (ListAllTransactions == null)
     {
         ListAllTransactions = new List <ETransactionInfo>();
     }
     ListAllTransactions.Clear();
     RKeeperApi.GetAllTransactions(dtBegin, dtEnd, ref ListAllTransactions);
 }
Esempio n. 6
0
 public static bool GetAccountInfo(int Account)
 {
     return(RKeeperApi.getAccountInfo(Account, ref AccountInfo));
 }
Esempio n. 7
0
 public static void GetVersionProtocol()
 {
     RKeeperApi.GetVersionProtocolCS(ref Protocol);
 }
Esempio n. 8
0
 public static bool GetAccount(long card)
 {
     return(RKeeperApi.GetAccount(card, ref AccountID));
 }
Esempio n. 9
0
 public static void GetVersion()
 {
     RKeeperApi.GetVersion(ref Version);
 }
Esempio n. 10
0
 public static bool SendTransaction(int Account, TTransactionInfo info)
 {
     return(RKeeperApi.CashTransaction(Account, info));
 }