示例#1
0
 public LogExceptionsController(ILogExceptionRepository logexceptionRepository)
 {
     this.logexceptionRepository = logexceptionRepository;
 }
 public LogExceptionController(ILogExceptionRepository logExceptionRepository)
 {
     m_logExceptionRepository = (logExceptionRepository != null) ? logExceptionRepository : throw new ArgumentNullException();
 }
示例#3
0
 public LogExceptionService(ILogExceptionRepository logExceptionRepository)
 {
     _logExceptionRepository = logExceptionRepository;
 }
示例#4
0
 public LogExceptionService(ILogExceptionRepository iLogExceptionRepository) : base(iLogExceptionRepository)
 {
     _ILogExceptionRepository = iLogExceptionRepository;
 }