|
Παρουσίαση με Ετικέτες
Όλες οι Ετικέτε... » AOP » PostSharp (RSS)
-
I though i should post on this one cause its far more than interesting suppose you have a Customer that is a Person public class Person
{
public string Name { get; set; }
}
public class Customer : Person
{
}
and implements 2 interfaces ICustomUser,ICustomer
public interface ICustomUser
{
string Title { get; set; }
}
public ...
|
|
|