root/branches/Emisje/Wierszowki/Wierszowki.Model/Linq/Author.cs @ 853

Wersja 853, 365 bytes (wprowadzona przez marek, 17 years temu)

re #195 - merged with latest trunk

Line 
1using System.ComponentModel.DataAnnotations;
2using Wierszowki.Core.Interfaces;
3using Wierszowki.Core.Validation;
4
5namespace Wierszowki.Core.Linq
6{
7    [MetadataType(typeof(AuthorValidation))]
8    public partial class Author : AuthorValidation, IIdentifiable
9    {
10        public string FullName { get { return LastName + " " + FirstName; } }
11    }
12}
Notatka: Zobacz TracBrowser aby uzyskać więcej informacji.