public RemotingServer(UserInfoEntity userInfo, string UserId, int ModuleId) { this._RemotingState = new RemotingState(); this.myAlarm = new Alarm(); this.myCar = new Car(); this.m_LogHelper = new LogHelper(); this._DataCSList = new RemotingDataCS(); this._DataBSList = new RemotingDataBS(); this._OnlineUserInfo = new OnlineUserInfo(userInfo.WorkId, UserId, userInfo.GroupId, ModuleId, userInfo.AllowSelMutil, userInfo.AllowEmptyPw, userInfo.SudoOverDue, userInfo.RoadTransportID, userInfo.AreaCode); this.myDownData = new DownData(userInfo.WorkId, userInfo.AllowEmptyPw, userInfo.SudoOverDue, userInfo.AllowSelMutil, this._OnlineUserInfo); this.myDownDataYD = new DownDataFJYD(userInfo.WorkId, userInfo.AllowEmptyPw, userInfo.SudoOverDue, userInfo.AllowSelMutil, this._OnlineUserInfo); this.myDownDataDB44 = new DownDataXCJLY(userInfo.WorkId, userInfo.AllowEmptyPw, userInfo.SudoOverDue, userInfo.AllowSelMutil, this._OnlineUserInfo); this.myDownDataPass = new DownDataPassThrough(userInfo.WorkId, userInfo.AllowEmptyPw, userInfo.SudoOverDue, userInfo.AllowSelMutil, this._OnlineUserInfo); }
public RemotingServer(int workId, string UserId, int GroupId, int ModuleId, bool AllowSelMutil, bool AllowEmptyPw, bool SudoOverDue) { this._RemotingState = new RemotingState(); this.myAlarm = new Alarm(); this.myCar = new Car(); this.m_LogHelper = new LogHelper(); this._DataCSList = new RemotingDataCS(); this._DataBSList = new RemotingDataBS(); this._OnlineUserInfo = new OnlineUserInfo(workId, UserId, GroupId, ModuleId, AllowSelMutil, AllowEmptyPw, SudoOverDue, ""); this.myDownData = new DownData(workId, AllowEmptyPw, SudoOverDue, AllowSelMutil, this._OnlineUserInfo); this.myDownDataYD = new DownDataFJYD(workId, AllowEmptyPw, SudoOverDue, AllowSelMutil, this._OnlineUserInfo); this.myDownDataDB44 = new DownDataXCJLY(workId, AllowEmptyPw, SudoOverDue, AllowSelMutil, this._OnlineUserInfo); this.myDownDataPass = new DownDataPassThrough(workId, AllowEmptyPw, SudoOverDue, AllowSelMutil, this._OnlineUserInfo); }
public DataTable GetPrePathLongAndLat(string telephone, string BeginTime, string EndTime) { try { Alarm alarm = new Alarm(); return alarm.GetPrePathLongAndLat(telephone, BeginTime, EndTime); } catch (Exception exception) { ErrorMsg msg = new ErrorMsg("RemotingServer", "GetPrePathLongAndLat", exception.Message); this.m_LogHelper.WriteError(msg); return null; } }