Exemplo n.º 1
0
 public bool UpdateAfterTransfer(int queueId)
 {
     if (objClickTransferDaoService == null)
     {
         objClickTransferDaoService = new ClickTransferDaoImp();
     }
     return(objClickTransferDaoService.UpdateAfterTransfer(queueId));
 }
Exemplo n.º 2
0
 public List <PathDetailsData> GetInitialTransferPath(int queueId)
 {
     if (objClickTransferDaoService == null)
     {
         objClickTransferDaoService = new ClickTransferDaoImp();
     }
     if (objParkingControllerService == null)
     {
         objParkingControllerService = new ParkingControllerImp();
     }
     objClickTransferDaoService.GetInitialTransferPath(queueId);
     return(objParkingControllerService.GetPathDetails(queueId));
 }
Exemplo n.º 3
0
        public List <PathDetailsData> GetDynamicTransferPath(int queueId)
        {
            if (objClickTransferDaoService == null)
            {
                objClickTransferDaoService = new ClickTransferDaoImp();
            }
            if (objParkingControllerService == null)
            {
                objParkingControllerService = new ParkingControllerImp();
            }
            int pathId = 0;

            pathId = objClickTransferDaoService.GetDynamicTransferPath(queueId);
            return(objParkingControllerService.GetPathDetails(queueId, pathId));
        }