I have a project with all my Interface definitions: RivWorks.Interfaces
I have a project where I define concrete implmentations: RivWorks.DTO
I\'ve done this hu
Well, you can use this!
class A {}
class B : A {}
...
List b = new List();
...
List a = new List(b.ToArray());
Now, to give direct solution,
using dto = RivWorks.DTO;
using contracts = RivWorks.Interfaces.DataContracts;
...
public static List Get(Guid companyID) {
List prodList = new List();
...
return new List(prodList.ToArray());
}