コード例 #1
0
 public static void Update(SystemUserProfilePropertysWrapper obj)
 {
     businessProxy.Update(obj.entity);
 }
コード例 #2
0
 public static void Delete(SystemUserProfilePropertysWrapper instance)
 {
     businessProxy.Delete(instance.entity);
 }
コード例 #3
0
 public static void Refresh(SystemUserProfilePropertysWrapper instance)
 {
     businessProxy.Refresh(instance.entity);
 }
コード例 #4
0
 public static void Refresh(SystemUserProfilePropertysWrapper instance)
 {
     businessProxy.Refresh(instance.entity);
 }
コード例 #5
0
 public static void Delete(SystemUserProfilePropertysWrapper instance)
 {
     businessProxy.Delete(instance.entity);
 }
コード例 #6
0
 public static void SaveOrUpdate(SystemUserProfilePropertysWrapper obj)
 {
     businessProxy.SaveOrUpdate(obj.entity);
 }
 public static List <SystemUserProfileWrapper> FindAllByPropertyID(SystemUserProfilePropertysWrapper propertyID)
 {
     return(ConvertToWrapperList(businessProxy.FindAllByPropertyID(propertyID.Entity)));
 }
 public static List <SystemUserProfileWrapper> FindAllByOrderByAndFilterAndPropertyID(string orderByColumnName, bool isDesc, SystemUserProfilePropertysWrapper propertyID, PageQueryParams pageQueryParams)
 {
     return(ConvertToWrapperList(businessProxy.FindAllByOrderByAndFilterAndPropertyID(orderByColumnName, isDesc, propertyID.Entity, pageQueryParams)));
 }