Files
mROA/Example.Backend/LoadTestImp.cs
T

30 lines
543 B
C#

using System;
using Example.Shared;
using mROA.Implementation.Attributes;
namespace Example.Backend
{
[SharedObjectSingleton]
public class LoadTestImp : ILoadTest
{
public int Next(int last)
{
return last + 1;
}
public int Last(int next)
{
return next - 1;
}
public void C()
{
throw new NotImplementedException();
}
public void A()
{
throw new NotImplementedException();
}
}
}