コード例 #1
0
        public static bool FindPhoneInCustomPhoneArea(string customPhoneAreaName, string mobile)
        {
            SPCustomPhoneAreaWrapper customPhoneAreaWrapper = FindByCustomPhoneArea(customPhoneAreaName, mobile);

            if (customPhoneAreaWrapper != null)
            {
                return(true);
            }

            return(false);
        }
コード例 #2
0
 public static void Refresh(SPCustomPhoneAreaWrapper instance)
 {
     businessProxy.Refresh(instance.entity);
 }
コード例 #3
0
 public static void SaveOrUpdate(SPCustomPhoneAreaWrapper obj)
 {
     businessProxy.SaveOrUpdate(obj.entity);
 }
コード例 #4
0
 public static void Delete(SPCustomPhoneAreaWrapper instance)
 {
     businessProxy.Delete(instance.entity);
 }
コード例 #5
0
 public bool HasPhone(string mobile)
 {
     return(SPCustomPhoneAreaWrapper.FindPhoneInCustomPhoneArea(this.FilterValue, mobile));
 }