root/trunk/eCard/eCardMVC/Platnosci.Core/Linq/vPlatnosciEcard.cs @ 930

Wersja 867, 451 bytes (wprowadzona przez alina, 16 years temu)

re #215 zmiany Site.master

Line 
1using System;
2using System.Collections.Generic;
3using Platnosci.Core.Interface;
4
5namespace Platnosci.Core.Linq
6{
7    public partial class vPlatnosciEcard : IIdentifiable
8    {
9        public string FullName
10        {
11            get
12            {
13                return LastName + " " + FirstName;
14            }
15        }
16
17        public int Id
18        {
19            get { return this.ID_faktury; }
20        }
21    }
22}
23
24
Notatka: Zobacz TracBrowser aby uzyskać więcej informacji.