Example #1
0
 public CreateModel(LogisticOrderTracker.Models.LogisticOrderTrackerContext context)
 {
     _context = context;
 }
Example #2
0
 public async Task <ICollection <AddressContact> > GetContacts(LogisticOrderTrackerContext context)
 {
     return(await context.AddressContact.Where(e => e.Active == true && e.AddressId == this.Id).ToListAsync());
 }
 public EditModel(LogisticOrderTracker.Models.LogisticOrderTrackerContext context)
 {
     _context = context;
 }
Example #4
0
 public DetailsModel(LogisticOrderTracker.Models.LogisticOrderTrackerContext context)
 {
     _context = context;
 }