Exemplo n.º 1
0
 public UseCaseInfo(UseCase useCase)
 {
     this.Name = ((DescriptionAttribute)useCase.GetType()
         .GetCustomAttributes(typeof(DescriptionAttribute), true)[0]).Description;
     this.UseCase = useCase;
 }