14 lines
249 B
C#
14 lines
249 B
C#
namespace WolverineTutorial;
|
|
|
|
public class IssueRepository
|
|
{
|
|
public void Store(Issue issue)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public Issue Get(Guid createdId)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |