コード例 #1
0
        public itemsIssuedModel(int itemIssuedID, personModel person, itemModel item, bool?itemReturned)
        {
            this.itemIssuedID = itemIssuedID;

            this.person = person;

            this.item = item;

            this.itemReturned = itemReturned;
        }
コード例 #2
0
        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;
        }