예제 #1
0
파일: Reference.cs 프로젝트: JohanOtto/Nova
 public static CustomerTracking CreateCustomerTracking(long ID, string operationType, global::System.DateTime date, long customerId, int systemUserId)
 {
     CustomerTracking customerTracking = new CustomerTracking();
     customerTracking.Id = ID;
     customerTracking.OperationType = operationType;
     customerTracking.Date = date;
     customerTracking.CustomerId = customerId;
     customerTracking.SystemUserId = systemUserId;
     return customerTracking;
 }
예제 #2
0
파일: Reference.cs 프로젝트: JohanOtto/Nova
 public void AddToCustomerTrackings(CustomerTracking customerTracking)
 {
     base.AddObject("CustomerTrackings", customerTracking);
 }