Пример #1
0
 public static void Update(SPSendRequestInfoWrapper obj)
 {
     businessProxy.Update(obj.entity);
 }
Пример #2
0
 public static void Delete(SPSendRequestInfoWrapper instance)
 {
     businessProxy.Delete(instance.entity);
 }
Пример #3
0
 public static void Refresh(SPSendRequestInfoWrapper instance)
 {
     businessProxy.Refresh(instance.entity);
 }
 public static void Refresh(SPSendRequestInfoWrapper instance)
 {
     businessProxy.Refresh(instance.entity);
 }
 public static void Delete(SPSendRequestInfoWrapper instance)
 {
     businessProxy.Delete(instance.entity);
 }
 public static void SaveOrUpdate(SPSendRequestInfoWrapper obj)
 {
     businessProxy.SaveOrUpdate(obj.entity);
 }
Пример #7
0
        public SPSendRequestInfoWrapper ToWrapper()
        {
            SPSendRequestInfoWrapper wrapper = new SPSendRequestInfoWrapper();
            wrapper.Id = this.Id;
            wrapper.ToUrl = this.ToUrl;
            wrapper.DataID = this.DataID;
            wrapper.IsSuccess = this.IsSuccess;
            wrapper.ErrorCode = this.ErrorCode;
            wrapper.ErrorMessage = this.ErrorMessage;
            wrapper.SendParans = this.SendParans;

            return wrapper;
        }
Пример #8
0
 public void FromWrapper(SPSendRequestInfoWrapper wrapper)
 {
     this.Id = wrapper.Id;
     this.ToUrl = wrapper.ToUrl;
     this.DataID = wrapper.DataID;
     this.IsSuccess = wrapper.IsSuccess;
     this.ErrorCode = wrapper.ErrorCode;
     this.ErrorMessage = wrapper.ErrorMessage;
     this.SendParans = wrapper.SendParans;
 }