123456789101112131415161718192021 |
- using Comal.Classes;
- using InABox.DynamicGrid;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PRSDesktop
- {
- public class JobDocumentSetMilestoneGrid : DynamicOneToManyGrid<JobDocumentSet, JobDocumentSetMileStone>
- {
- public JobDocumentSetMilestoneGrid()
- {
- Options.BeginUpdate();
- Options.Clear();
- Options.AddRange(DynamicGridOption.EditRows);
- Options.EndUpdate();
- }
- }
- }
|