Esempio n. 1
0
 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;
 }
Esempio n. 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));
        }
Esempio n. 3
0
 public ActionSync(ActionSyncType type, ActionSyncReason reason, FaxApiUserActionSync faxUserObj) : this(type, reason)
 {
     FaxUserSyncObj = faxUserObj;
 }
Esempio n. 4
0
 private ActionSync(ActionSyncType type, ActionSyncReason reason)
 {
     ActionType   = type;
     ActionReason = reason;
 }
Esempio n. 5
0
 private void AddActionSnycItem(ActionSyncType type, ActionSyncReason reason, string userId, string faxNumber)
 {
     this.ActionList.Add(new ActionSync(type, reason, AttorneyUser.UserId, userId, faxNumber));
 }