public itemsIssuedModel(int itemIssuedID, personModel person, itemModel item, bool?itemReturned) { this.itemIssuedID = itemIssuedID; this.person = person; this.item = item; this.itemReturned = itemReturned; }
public itemDeployedModel(projectModel project, itemModel item, String location, string date, string notes) { this.project = project; this.item = item; this.location = location; this.date = date; this.notes = notes; }