public UserNotifyGroupManager(IUserNotifyGroupDal userNotifyGroupDal,
                               INotifyGroupDal notifyGroupDal,
                               IMapper mapper, IUserDal userDal)
 {
     this.notifyGroupDal     = notifyGroupDal;
     this.userDal            = userDal;
     this.mapper             = mapper;
     this.userNotifyGroupDal = userNotifyGroupDal;
 }
Esempio n. 2
0
 public NotifyGroupManager(INotifyGroupDal notifyGroupDal, IMapper mapper)
 {
     this.mapper         = mapper;
     this.notifyGroupDal = notifyGroupDal;
 }