public ActionSync(ActionSyncType type, ActionSyncReason reason, string attorneyId, string userId, string faxNumber) : this(type, reason)
 {
     AssistantSnycObj            = new AssistantActionSync();
     AssistantSnycObj.AttorneyId = attorneyId;
     AssistantSnycObj.UserId     = userId;
     AssistantSnycObj.FaxNumber  = faxNumber;
 }
Beispiel #2
0
        private void AddActionSnycItem(ActionSyncType type, ActionSyncReason reason, FaxApiUser user)
        {
            var faxSyncObject = new FaxSnyc.Models.Sync.FaxApiUserActionSync();

            ObjectMapper.PropertyMap(user, faxSyncObject);
            this.ActionList.Add(new ActionSync(type, reason, faxSyncObject));
        }
 public ActionSync(ActionSyncType type, ActionSyncReason reason, FaxApiUserActionSync faxUserObj) : this(type, reason)
 {
     FaxUserSyncObj = faxUserObj;
 }
 private ActionSync(ActionSyncType type, ActionSyncReason reason)
 {
     ActionType   = type;
     ActionReason = reason;
 }
Beispiel #5
0
 private void AddActionSnycItem(ActionSyncType type, ActionSyncReason reason, string userId, string faxNumber)
 {
     this.ActionList.Add(new ActionSync(type, reason, AttorneyUser.UserId, userId, faxNumber));
 }