This repository has been archived on 2020-06-09. You can view files and clone it, but cannot push or open issues or pull requests.
dotnet-nhibernate-test/ConsoleApp1/Model/Person.cs
2020-06-09 00:12:01 +02:00

13 lines
309 B
C#

using System;
namespace ConsoleApp1.Model
{
public class Person
{
public virtual Guid Id { get; set; }
public virtual string FirstName { get; set; }
public virtual string LastName { get; set; }
public virtual string GetFullName() => $"{FirstName} {LastName}";
}
}