public ServiceBusiness(IRepository repository, IServiceLog serviceLog, ISettingBusiness settingBusiness, Quilt4Net.Interfaces.ISessionHandler sessionHandler)
 {
     _repository = repository;
     _serviceLog = serviceLog;
     _settingBusiness = settingBusiness;
     _sessionHandler = sessionHandler;
 }
Exemple #2
0
 private static void IssueHandler_IssueRegistrationCompletedEvent(object sender, Quilt4Net.Core.Events.IssueRegistrationCompletedEventArgs e)
 {
     if (!e.Result.IsSuccess)
     {
         LogException(e.Result.Exception, LogLevel.SystemError);
     }
 }