I am sorry that this is the question related to an advice rather than an issue.
I would like to know when I should use an interface and when I should not.
In order to make it clear about my question, I am going to write my current implementation with and without interface:
WITH INTERFACE
interface IObjectBuilder
{
string Build();
}
class ObjectABuilder: IObjectBuilder
{
ObjectABuilder(Object A){}
public string Build();
}
class ObjectBBuilder: IObjectBuilder
{
ObjectABuilder(Object B){}
public string Build(){}
}
WITHOUT INTERFACE 1:
class ObjectABuilder
{
ObjectABuilder(Object A){}
public string Build(){}
}
class ObjectBBuilder
{
ObjectBBuilder(Object B){}
public string Build(){}
}
WITHOUT INTERFACE 2:
class ObjectABuilder
{
public string Build(Object A){}
}
class ObjectBBuilder
{
public string Build(Object B){}
}
So, I would like to know, in this case:
should I use with and without interface and why?
for the case of using without interface, what do you think of constructing the class with objectA (b) is better or just pass it directly in the method?
Thanks in advance.