Files
mROA/mROA/Implementation/Frontend/StaticOwnershipRepository.cs
T

11 lines
202 B
C#

using mROA.Abstract;
namespace mROA.Implementation.Frontend;
public class StaticOwnershipRepository(int id) : IOwnershipRepository
{
public int GetOwnershipId()
{
return id;
}
}