Exemplo n.º 1
0
 /// <inheritdoc />
 void IEventLogger.AddLog(object businessObject, IPortalSettings portalSettings, int userID, string userName, Abstractions.Logging.EventLogType logType)
 {
     this.AddLog(businessObject, portalSettings, userID, userName, logType.ToString());
 }
Exemplo n.º 2
0
 /// <inheritdoc />
 void IEventLogger.AddLog(string name, string value, IPortalSettings portalSettings, int userID, Abstractions.Logging.EventLogType logType)
 {
     this.EventLogger.AddLog(name, value, portalSettings, userID, logType.ToString());
 }
Exemplo n.º 3
0
 /// <inheritdoc />
 void IEventLogger.AddLog(IPortalSettings portalSettings, int userID, Abstractions.Logging.EventLogType logType)
 {
     this.EventLogger.AddLog(new LogProperties(), portalSettings, userID, logType.ToString(), false);
 }
Exemplo n.º 4
0
 /// <inheritdoc />
 void IEventLogger.AddLog(string name, string value, Abstractions.Logging.EventLogType logType)
 {
     this.EventLogger.AddLog(name, value, PortalController.Instance.GetCurrentSettings(), UserController.Instance.GetCurrentUserInfo().UserID, logType);
 }