15 lines
594 B
C#
15 lines
594 B
C#
namespace View_by_Distance.Shared.Models.Stateless.Methods;
|
|
|
|
public interface IItem
|
|
{ // ...
|
|
|
|
string TestStatic_GetWrongYearFlag(bool? isWrongYear) =>
|
|
GetWrongYearFlag(isWrongYear);
|
|
static string GetWrongYearFlag(bool? isWrongYear) => isWrongYear is null ? "#" : isWrongYear.Value ? "~" : "=";
|
|
|
|
(List<Models.Item>, int) TestStatic_GetMerged(List<Models.Item> itemsA, List<Models.Item> itemsB) =>
|
|
GetMerged(itemsA, itemsB);
|
|
static (List<Models.Item>, int) GetMerged(List<Models.Item> itemsA, List<Models.Item> itemsB) =>
|
|
Item.GetMerged(itemsA, itemsB);
|
|
|
|
} |