Ejemplo n.º 1
0
 public TopTen(string ExceptionLogPth, string FilePth, string SignalRAPi, ref List <ClientInfo> LstClntInfo, bool WriteLgFile, bool WriteExcetionLg, List <string> IMEICollect, string ConnectionStr, bool CheckIndividualTrackerFromDb)
 {
     ExceptionLogPath           = ExceptionLogPth;
     LogFilePath                = FilePth;
     SgnalRApi                  = SignalRAPi;
     ObjComnOp                  = new CommonOperation(LogFilePath, ExceptionLogPath, SignalRAPi);
     ClientLst                  = LstClntInfo;
     WriteLogFile               = WriteLgFile;
     WriteExceptionLog          = WriteExcetionLg;
     DeviceIDCollection         = IMEICollect;
     ObjVehiclesBL              = new FM_VehicleBL(ConnectionStr);
     ChkIndividualTrackerFromDb = CheckIndividualTrackerFromDb;
 }
Ejemplo n.º 2
0
 public CalampParser(Byte[] ClientData, string ExceptionLogPth, string FilePth, bool WriteLgFile, bool WriteExcetionLg, string SignalRAPi, ref List <UdpClientInfo> UDPClntList, ref UdpClientInfo UDPClnt, List <string> LstALLIMEI, string ConnectionStr)
 {
     ClntData            = ClientData;
     ExceptionLogPath    = ExceptionLogPth;
     LogFilePath         = FilePth;
     SgnalRApi           = SignalRAPi;
     WriteLogFileflg     = WriteLgFile;
     WriteExceptionLgflg = WriteExcetionLg;
     ObjComnOp           = new TcpService.CommonOperation(LogFilePath, ExceptionLogPath, SgnalRApi);
     objUDPClnt          = UDPClnt;
     lstUDPClnt          = UDPClntList;
     ObjVehicleObj       = new FM_VehicleBL(ConnectionStr);
     AllIMEILst          = LstALLIMEI;
 }
Ejemplo n.º 3
0
 public CalampParser(UdpClientInfo objUDPClnt, string ConnectionStr)
 {
     this.objUDPClnt = objUDPClnt;
     ObjVehicleObj   = new FM_VehicleBL(ConnectionStr);
 }