Ejemplo n.º 1
0
 public User2NotificationController(IUser2NotificationService user2NotificationService, IMapper mapper, ILog4Net logger)
 {
     _user2NotificationService = user2NotificationService;
     _mapper = mapper;
     _logger = logger;
 }
Ejemplo n.º 2
0
 public SessionService(IRepository <Session> repository, INotificationService notificationService, IUser2NotificationService userNotificationService) : base(repository)
 {
     _repository              = repository;
     _notificationService     = notificationService;
     _userNotificationService = userNotificationService;
 }