Ejemplo n.º 1
0
 public GetEventEntriesHandler(IEventEntryService eventEntryService)
 {
     _eventEntryService = eventEntryService;
 }
Ejemplo n.º 2
0
 public UserDeletedHandler(IEventEntryService eventEntryService)
 {
     _eventEntryService = eventEntryService;
 }
Ejemplo n.º 3
0
 public PasswordChangedHandler(IEventEntryService eventEntryService)
 {
     _eventEntryService = eventEntryService;
 }
Ejemplo n.º 4
0
 public PostUpdatedHandler(IEventEntryService eventEntryService)
 {
     _eventEntryService = eventEntryService;
 }
Ejemplo n.º 5
0
 public CategoryDeletedHandler(IEventEntryService eventEntryService)
 {
     _eventEntryService = eventEntryService;
 }
Ejemplo n.º 6
0
        public void SetUp()
        {
            _eventEntryRepositoryMock = new Mock <IEventEntryRepository>();

            _eventEntryService = new EventEntryService(_eventEntryRepositoryMock.Object, MockProvider.AutoMapper());
        }
Ejemplo n.º 7
0
 public SignedInHandler(IEventEntryService eventEntryService)
 {
     _eventEntryService = eventEntryService;
 }