root/trunk/Wierszowki/Wierszowki.Model/Linq/Author.cs
@
752
| Wersja 752, 365 bytes (wprowadzona przez marek, 17 years temu) |
|---|
| Line | |
|---|---|
| 1 | using System.ComponentModel.DataAnnotations; |
| 2 | using Wierszowki.Core.Interfaces; |
| 3 | using Wierszowki.Core.Validation; |
| 4 | |
| 5 | namespace Wierszowki.Core.Linq |
| 6 | { |
| 7 | [MetadataType(typeof(AuthorValidation))] |
| 8 | public partial class Author : AuthorValidation, IIdentifiable |
| 9 | { |
| 10 | public string FullName { get { return FirstName + " " + LastName; } } |
| 11 | } |
| 12 | } |
Notatka: Zobacz TracBrowser
aby uzyskać więcej informacji.
