Exemple #1
0
 public static CustomerTracking CreateCustomerTracking(long ID, string operationType, global::System.DateTime date, long customerId)
 {
     CustomerTracking customerTracking = new CustomerTracking();
     customerTracking.Id = ID;
     customerTracking.OperationType = operationType;
     customerTracking.Date = date;
     customerTracking.CustomerId = customerId;
     return customerTracking;
 }
Exemple #2
0
 public void AddToCustomerTrackings(CustomerTracking customerTracking)
 {
     base.AddObject("CustomerTrackings", customerTracking);
 }