11 lines
143 B
C#
11 lines
143 B
C#
namespace isn.tests
|
|
{
|
|
internal interface IRing : IBody
|
|
{
|
|
|
|
|
|
IRing Add(IRing other);
|
|
IRing Mult<TBody>(TBody v);
|
|
}
|
|
|
|
} |