using System; using Comal.Classes; using InABox.Mobile; namespace PRS.Mobile { public class SetoutShell : Shell { protected override void ConfigureColumns(ShellColumns columns) { columns .Map(nameof(Number), x => x.Number) .Map(nameof(Description), x => x.Description) .Map(nameof(JobID), x => x.JobLink.ID) .Map(nameof(JobNumber), x => x.JobLink.JobNumber) .Map(nameof(JobName), x => x.JobLink.Name); } public string Number => Get(); public string Description => Get(); public Guid JobID => Get(); public string JobNumber => Get(); public string JobName => Get(); } }