﻿using System;
using System.Collections.Generic;
using Platnosci.Core.Interface;

namespace Platnosci.Core.Linq
{
    public partial class vPlatnosciEcard : IIdentifiable
    {
        public string FullName 
        { 
            get 
            { 
                return LastName + " " + FirstName; 
            }
        }

        public int Id
        {
            get { return this.ID_faktury; }
        }
    }
}


