Hi,
I want to create interfaces for each entity and want entities to implement these interfaces.
What i want is for entity
CustomerEntity : ICustomerEntity
{
public int CustomerId{get;set;}
public string Name{get;set;}
}
ICustomerEntity
{
int CustomerId{get;set;}
string Name{get;set;}
}
How can I achieve this using LLBL gen pro