Beispiel #1
0
        /// <summary>
        /// get list of technicians
        /// </summary>
        /// <returns></returns>
        public IEnumerable <UserProfileModel> GetTechnicians()
        {
            var userProfileList      = userReadRepository.GetUsers();
            var userProfileListModel = userProfileMapper.EntityToModel(userProfileList);

            return(userProfileListModel);
        }