af1152b001
Refactored all C# test files to use explicit namespace declarations and moved all using directives inside the namespace block for consistency. Updated assembly info and cache files to reflect the new build. Adjusted MvcTestingAppManifest.json to use fully qualified assembly names. No functional changes; all updates are related to code style, organization, and project metadata.
40 lines
1.1 KiB
C#
40 lines
1.1 KiB
C#
// <copyright file="CriticRatingComparer.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace Emby.Server.Implementations.Sorting
|
|
{
|
|
using Jellyfin.Data.Enums;
|
|
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Controller.Sorting;
|
|
using MediaBrowser.Model.Querying;
|
|
|
|
/// <summary>
|
|
/// Class CriticRatingComparer.
|
|
/// </summary>
|
|
public class CriticRatingComparer : IBaseItemComparer
|
|
{
|
|
/// <summary>
|
|
/// Gets the name.
|
|
/// </summary>
|
|
/// <value>The name.</value>
|
|
public ItemSortBy Type => ItemSortBy.CriticRating;
|
|
|
|
/// <summary>
|
|
/// Compares the specified x.
|
|
/// </summary>
|
|
/// <param name="x">The x.</param>
|
|
/// <param name="y">The y.</param>
|
|
/// <returns>System.Int32.</returns>
|
|
public int Compare(BaseItem? x, BaseItem? y)
|
|
{
|
|
return GetValue(x).CompareTo(GetValue(y));
|
|
}
|
|
|
|
private static float GetValue(BaseItem? x)
|
|
{
|
|
return x?.CriticRating ?? 0;
|
|
}
|
|
}
|
|
}
|