public void GetAll() { var expected = DtoConverters.GetRoomsDtos(new List <Room> { rooms.TestRoom1 }); var actual = roomService.GetAll(); Assert.AreEqual(expected, actual); }
/// <summary> /// Показывает все комнаты. /// </summary> /// <returns>Коллекцию ДТО комнат.</returns> public IEnumerable <RoomDto> GetAll() { return(DtoConverters.GetRoomsDtos(this.roomRepository.GetAll())); }