Exemplo n.º 1
0
        public AssemblyMms(string id, Accelerometer accelerometer, Gyroscope gyroscope, DateTime date,
                           string typeOfIc, string structureOfSensor, Author author, int substrate, Consignment consignment,
                           int authorId, string consignmentId, ConfiguringMms configuringMms, MakeProduct makeProduct)
        {
            Id = id;

            Accelerometer = accelerometer;

            Gyroscope = gyroscope;

            Date              = date;
            TypeOfIc          = typeOfIc;
            StructureOfSensor = structureOfSensor;
            Substrate         = substrate;

            ConsignmentId = consignmentId;
            Consignment   = consignment;

            Author   = author;
            AuthorId = authorId;

            ConfiguringMms = configuringMms;

            MakeProduct = makeProduct;
        }
Exemplo n.º 2
0
        public MobileTestingMms(Author author, string place, DateTime date,
                                double nonlinearity, double inaccuracy, double changeShiftZero, double changeTransformation,
                                double hysteresisShiftZero, double hysteresisTransformation,
                                int id, int authorId, int configuringMmsId, ConfiguringMms configuringMms)
        {
            Id = id;

            ConfiguringMmsId = configuringMmsId;
            ConfiguringMms   = configuringMms;

            AuthorId = authorId;
            Author   = author;

            Place                    = place;
            Date                     = date;
            Nonlinearity             = nonlinearity;
            Inaccuracy               = inaccuracy;
            СhangeShiftZero          = changeShiftZero;
            СhangeTransformation     = changeTransformation;
            HysteresisShiftZero      = hysteresisShiftZero;
            HysteresisTransformation = hysteresisTransformation;
        }