Exemple #1
0
        public void InsertDeliveryAppointment()
        {
            var rep = new DeliveryAppointmentRepository();

            var status = new DeliveryAppointment()
            {
                Carrier                   = "999068",
                SalesOrderLineId          = 0,
                DeliveryAppointmentStatus = 200,
                TransactionDate           = DateTime.Now,
            };

            rep.Insert(status);
        }