public HotelDataObject GetHotelById(Guid UserId) { HotelUser hotelUser = hotelUserRepository.GetByKey(UserId); Hotel hotel = hotelRepository.GetByKey(hotelUser.HotelId); return(AutoMapper.Mapper.Map <Hotel, HotelDataObject>(hotel)); }
public void AssignRole(Guid userID, Guid roleID) { HotelUser hotelUser = hotelUserRepository.GetByKey(userID); hotelUser.HotelRoleId = roleID; hotelUserRepository.Update(hotelUser); repositoryContext.Commit(); }