Ejemplo n.º 1
0
        public static string getEncodeQRString(String pNumberListString, DateTime pDate, long pGroup)
        {
            string pointSaleId = fillNumberString(UtilityService.getPointSaleId().ToString(), 2);
            string draDate     = pDate.ToString("yyyyMMdd");
            string groupId     = fillNumberString(pGroup.ToString(), 2);

            return(groupId + draDate + pointSaleId + "H" + pNumberListString);
        }
Ejemplo n.º 2
0
 public int[] getTotalImportBySyncStatus(DateTime pDate, long pGroup, long pSyncStatus)
 {
     return(this.listRepository.getDrawListTotals(UtilityService.getPointSaleId(), pDate, pGroup, pSyncStatus));
 }
Ejemplo n.º 3
0
 public int[] getDrawPendingSyncTotals(DateTime pDate, long pGroup)
 {
     return(this.listRepository.getDrawListTotals(UtilityService.getPointSaleId(), pDate, pGroup, 0, true));
 }
Ejemplo n.º 4
0
 public LPF_LotteryPrizeFactor getByGroup(long pGroup)
 {
     return(this.prizeFactorRepo.getByPointSaleAndGroup(UtilityService.getPointSaleId(), pGroup));
 }