コード例 #1
0
 public LocationCheckinEvent(LocationCheckin t)
 {
     this.Location         = t.Location;
     this.Member           = t.Member;
     this.LocationCheckin  = t;
     this.CheckinCompleted = t.CheckinCompleted;
 }
コード例 #2
0
 public LocationCheckinData(LocationCheckin t)
 {
     Id     = t.RowId;
     Member = new MemberData {
         Id = t.Member.RowId, FirstName = t.Member.FirstName, LastName = t.Member.LastName
     };
     Location = new LocationData {
         Id = t.Location.RowId, LocationName = t.Location.LocationName
     };
     CheckinCompleted = t.CheckinCompleted;
     Latitude         = new Faker().Address.Latitude();
     Longitude        = new Faker().Address.Longitude();
 }
コード例 #3
0
 public Created(LocationCheckin t) : base(t)
 {
 }