Reporter | Roy Dallal (RoyDallal@gmail.com) |
---|---|
Created | Mar 6, 2011 8:41:16 PM |
Updated | Jan 25, 2012 7:13:07 PM |
Resolved | Jan 25, 2012 2:45:35 PM |
Priority | Normal |
Type | Bug |
Fix versions | 6.1 |
State | Fixed |
Assignee | Alexey Kuptsov (alexey.kuptsov) |
Subsystem | No subsystem |
Affected versions | No Affected versions |
Fixed in build | 6.5.1.3403 |
The method should have been created with a return of List<Definition>
public List<Definition> GetElements()
{
;
}
but the definition created was:
public List<Definition><Definition> GetAll()
{
throw new NotImplementedException();
}
public List<Definition> GetElements()
{
return ValueDefinitionDal.GetAll()
}
but the definition created was:
public List<Definition><Definition> GetAll()
{
throw new NotImplementedException();
}