internal static void InfoMethodMany(this ILogService logService, Authentication authentication, object target, string methodName, params object[][] items) { logService.Info(EventLogBuilder.BuildMany(authentication, target, methodName, items)); }
internal static void DebugMethod(this ILogService logService, Authentication authentication, object target, string methodName, params object[] args) { logService.Debug(EventLogBuilder.Build(authentication, target, methodName, args)); }