public SessionService(ISessionRepository sessionRepository, IUnitOfWork unitOfWork, IHistoryRepository historyRepository, IEquipamentSessionRepository equipamentSessionRepository, ITagSessionRepository tagSessionRepository)
 {
     _sessionRepository           = sessionRepository;
     _unitOfWork                  = unitOfWork;
     _historyRepository           = historyRepository;
     _equipamentSessionRepository = equipamentSessionRepository;
     _tagSessionRepository        = tagSessionRepository;
 }
 public TagService(ITagRepository tagRepository, ITagSessionRepository tagSessionRepository, IUnitOfWork unitOfWork)
 {
     _tagRepository        = tagRepository;
     _tagSessionRepository = tagSessionRepository;
     _unitOfWork           = unitOfWork;
 }