Beispiel #1
0
 public EventBookingController()
 {
     try
     {
         eventBookingRepo = new EventBookingRepository();
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Beispiel #2
0
 public EventBookingRepositoryTest()
 {
     _eventBookingRepository = new EventBookingRepository(_eventDBMock.Object);
 }