Example #1
0
 public VerificationEmailController(ISendingVerifyingEmail isendingE, IUniqueException _ithrow,
                                    ISendingConfirmationRegistrationEmail _isending, IExceptionBase _erorBase, IAddZawodnik iaddZaw,
                                    IUniqueException iUexecp)
 {
     this._ithrow      = _ithrow;
     this._isendingVer = isendingE;
     this._isendingEnd = _isending;
     this._ierorBase   = _erorBase;
     this._iaddZaw     = iaddZaw;
     this._iUexecp     = iUexecp;
 }
 public UniqueException(string message, Exception inner, IExceptionBase _iexcp)
     : base(message, inner)
 {
     _iException = _iexcp;
 }
 public UniqueException(string message, IExceptionBase _iexcp)
     : base(message)
 {
     _iException = _iexcp;
 }
 public UniqueException2(IExceptionBase _iexcp)
 {
     _iException = _iexcp;
 }