9 lines
282 B
C#
9 lines
282 B
C#
namespace View_by_Distance.Shared.Models.Stateless.Methods;
|
|
|
|
public interface IAge
|
|
{ // ...
|
|
|
|
(int, TimeSpan) TestStatic_GetAge(DateTime minuend, DateTime subtrahend);
|
|
static (int, TimeSpan) GetAge(DateTime minuend, DateTime subtrahend) => Age.GetAge(minuend, subtrahend);
|
|
|
|
} |