private void InitializeInternalServices()
 {
     this.sqlErrorBroker    = new SqlErrorBroker();
     this.eFxceptionService = new EFxceptionService(this.sqlErrorBroker);
 }
Example #2
0
 public EFxceptionServiceTests()
 {
     this.sqlErrorBrokerMock = new Mock <ISqlErrorBroker>();
     this.efxceptionService  = new EFxceptionService(this.sqlErrorBrokerMock.Object);
 }