16 lines
270 B
C#
16 lines
270 B
C#
using mROA.Abstract;
|
|
|
|
namespace mROA.Implementation.Frontend;
|
|
|
|
public class StaticOwnershipRepository(int id) : IOwnershipRepository
|
|
{
|
|
public int GetOwnershipId()
|
|
{
|
|
return id;
|
|
}
|
|
|
|
public int GetHostOwnershipId()
|
|
{
|
|
return id;
|
|
}
|
|
} |