trying to use MockDb. here is the code:
public List<ProjectDto
> Fetch()
{
.Projects
ProjectDto
{
Id = r.Id,
Name = r.Name,
Description = r.Description,
ParentID = r.ParentID,
Alias = r.Alias,
CapitalizationStage = r.CapitalizationStage,
Viability = r.Viability
};
For some reason ProjectTracker.DalMock.MockDb.Projects throws the exception even though static constructor creates the list like so:
Projects =
}; what is wrong here?
Copyright (c) Marimer LLC