示例#1
0
 public NotificationService(INotificationRepository notRep, INotificationTemplateRepository notTempRep, IUnitOfWork uow)
 {
     this._NotificationRepository         = notRep;
     this._NotificationTemplateRepository = notTempRep;
     this._UnitOfWork = uow;
 }
示例#2
0
 public NotificationTemplateService(INotificationTemplateRepository notificationTemplateRepository, IMapper mapper)
 {
     this.notificationTemplateRepository = notificationTemplateRepository;
     Mapper = mapper;
 }