| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 | using System;using InABox.Core;namespace Comal.Classes{    [Caption("View Factory Status Module")]    public class CanViewFactoryStatus : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>    {    }    [Caption("View Factory Allocation Module")]    public class CanViewFactoryAllocation : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>    {    }    [Caption("Distribute Packets")]    public class CanDistributePackets : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>    {    }    [Caption("Hold or Release Manufacturing Packets")]    public class CanManagePacketHolds : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>    {    }    [Caption("View Factory Floor Module")]    public class CanViewFactoryFloor : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>    {    }    [Caption("Configure Factory Floor")]    public class CanConfigureFactoryFloor : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>    {    }    [Caption("Manage Pending Packets")]    public class CanManagePendingPackets : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>    {    }    [Caption("View Ready-To-Go Module")]    public class CanViewFactoryReadyToGo : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket, DeliveryItem>    {    }    [Caption("Manage Factory Configuration")]    public class CanViewFactorySettings : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingFactory>    {    }    [Caption("Track Manufacturing History")]    public class CanTrackManufacturingHistory : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingHistory>    {    }    [Caption("Print Drawings from Factory Floor Screen")]    [Obsolete("Direct Printing replaved by Save Function launching external file viewer", true)]    public class CanPrintFactoryFloorDrawings : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>    {    }    [Caption("Save Drawings from Factory Floor Screen")]    public class CanSaveFactoryFloorDrawings : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>    {    }    [Caption("Can Issue Packets To Factory")]    public class CanIssuePackets : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>    {    }    [Caption("Can View Manufacturing Module On Mobile")]    public class CanViewManufacturingOnMobile : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>    {    }}
 |