public IEnumerable <Tag> GetTagsOfCompany(int companyId) { try { return(tagRepo.GetTagsOfCompany(companyId)); } catch (DALException ex) { throw new ServiceException($"DAL exception : {ex.Message}"); } }