The generic-interface tag has no wiki summary.
4
votes
2answers
131 views
interface generic hierarchy
I have some generic interface linked one to each other.
public interface IA
{
int val { get; set; }
}
public interface IB<T> where T:IA
{
T a_val { get; set; }
}
public interface ...
13
votes
1answer
148 views
Generic interface overloading. Valid terminology?
Here is a very basic example of method overloading , two methods with the same name but with different signatures :
int MyMethod(int a)
int MyMethod(int a, string b)
Now let's say I define two ...
0
votes
2answers
65 views
Genericising a repository interface
Can anyone suggest a way to genericise the following interfaces so I can have one single interface rather than one per repository.
public interface IClass1Repository
{
Class1 NewEntity();
...
1
vote
1answer
1k views
How to bind Generic-type interfaces in Ninject
I'm fairly new to Ninject, and found myself stumbling when I came to implement a generic repository pattern. I want to bind a dependency IRepository<IEntityType> to a class ...
0
votes
1answer
159 views
Why use default access for methods in a generic DAO interface?
I found this code for a generic DAO interface while browsing around:
public interface GenericDAO<T, ID extends Serializable> {
Class<T> getEntityClass();
T findById(final ID ...
0
votes
4answers
2k views
How to deal with private member accessor and collections?
I have a class hierachy like this
public class A
{
protected class B
{
String Name { get; set; }
}
protected class C : KeyedCollection<String, B>
{
// ...
...
6
votes
3answers
1k views
Generic interfaces
Here is my code
public interface ITranslator<E, R>
{
E ToEntity<T>(R record);
}
class Gens : ITranslator<string, int>
{
#region ITranslator<string,int> Members
...