Pokaż
Ignoruj:
Data:
2009-12-11 16:57:08 (16 years ago)
Autor:
marek
Opis:

re #215 - drobny refactoring

Pliki:
1 zmodyfikowane

Legenda:

Bez zmian
Dodane
Usunięte
  • trunk/eCard/eCardMVC/Platnosci.Core/Linq/vPlatnosciEcard.cs

    r867 r949  
    1 using System; 
    2 using System.Collections.Generic; 
    3 using Platnosci.Core.Interface; 
     1using Platnosci.Core.Interface; 
    42 
    53namespace Platnosci.Core.Linq 
     
    75    public partial class vPlatnosciEcard : IIdentifiable 
    86    { 
    9         public string FullName  
    10         {  
    11             get  
    12             {  
    13                 return LastName + " " + FirstName;  
    14             } 
     7        public string FullName 
     8        { 
     9            get { return LastName + " " + FirstName; } 
    1510        } 
    1611 
    17         public int Id 
    18         { 
    19             get { return this.ID_faktury; } 
    20         } 
     12        public int Id { get { return ID_faktury; } } 
    2113    } 
    2214} 
    23  
    24