Created
December 3, 2015 21:10
-
-
Save samueleresca/81861081fa4562a0acb2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Class Telefilm | |
public class Telefilm | |
{ | |
public int TelefilmId { get; set; } | |
public string TelefilmName { get; set; } | |
public DateTime CreateDate { get; set; } | |
} | |
//Class Character | |
public class Character | |
{ | |
public int CharacterId { get; set; } | |
public int TelefilmId { get; set; } | |
public string FirstName { get; set; } | |
public string LastName { get; set; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment