I have been working on this but could not find a way to denote the relationship between a class and an interface that is implemented by class in an UML diagram.
My interface and class has following relationship:
interface foo
{
void a();
void b();
}
class goo : foo
{
public override void a()
{
//Code goes here
}
}
What can I use in visual paradigm to show their relationship?
It is shown like inheritance. This article may help you UML basics