Skip to content

Commit

Permalink
Added missing model class
Browse files Browse the repository at this point in the history
  • Loading branch information
icom85 committed Nov 22, 2015
1 parent ec9b3e3 commit 5d2ac63
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions RadGridViewEFCodeFirst.Models/Shipper.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
using System;
using System.Linq;

namespace RadGridViewEFCodeFirst.Models
{
public class Shipper
{
public int ShipperId { get; set; }

public int OrderTypeId { get; set; }

public virtual OrderType OrderType { get; set; }

public string Name { get; set; }

public string Address { get; set; }
}
}

0 comments on commit 5d2ac63

Please sign in to comment.