I have two modules (A and B) with controllers with the same name. When I import the controllers into module C, the controllers with the same name override each other.
What is the way to avoid this? Naming convention of the type "module.controller" for my controller?
Thanks!
Update
Here is a code example:
module('a',[]).controller("con");
module('b',[]).controller("con");
module('c', ['a','b']) // controller from a overrides controller from b