using System;
namespace Logic.ProductionToProductMapper.Cordonel
{
///
/// Container for skipping several checks in the production steps being able to
/// have special editions, which do not follow the general rules.
///
public class SkipProcess
{
///
/// Data base primary key
///
public Int32 Id { get; set; }
///
/// Order number
///
public Int32 OrderNumber { get; set; }
///
/// Unique identification number of PCB
///
public Int32 PcbId { get; set; }
///
/// Skip radio parameter check
///
public Boolean SkipRadioParameters { get; set; }
///
/// Skip FW check. Normally the FW will be assigned to the latest released version
/// and taken from the data base. Here special versions can be used for FW tests.
///
public Boolean SkipFWCheck { get; set; }
///
/// Skip the battery check, as the drained load may exceed the defined level. For
/// special devices, e.g. customer samples, which do not need the life time of
/// 20 years, this can be set.
///
public Boolean SkipBatteyCheck { get; set; }
///
/// Skip the look-up-table installation as this device may be used for development.
///
public Boolean SkipLUT { get; set; }
///
/// Date of assignment of these skipping-rules.
///
public DateTime Date { get; set; }
///
/// Author of assignment of these skipping-rules.
///
public String Name { get; set; }
}
}