public static List <SPChannelWrapper> FindAllByUperID(SPUperWrapper uperID)
 {
     return(ConvertToWrapperList(businessProxy.FindAllByUperID(uperID.entity)));
 }
 public static List <SPChannelWrapper> FindAllByOrderByAndFilterAndUperID(string orderByColumnName, bool isDesc, int pageIndex, int pageSize, SPUperWrapper uperID, out int recordCount)
 {
     return(ConvertToWrapperList(businessProxy.FindAllByOrderByAndFilterAndUperID(orderByColumnName, isDesc, pageIndex, pageSize, uperID.entity, out recordCount)));
 }
예제 #3
0
 public static void Delete(SPUperWrapper instance)
 {
     businessProxy.Delete(instance.entity);
 }
예제 #4
0
 public static void Refresh(SPUperWrapper instance)
 {
     businessProxy.Refresh(instance.entity);
 }
예제 #5
0
 public static void SaveOrUpdate(SPUperWrapper obj)
 {
     businessProxy.SaveOrUpdate(obj.entity);
 }