예제 #1
0
 public static void DeletStoreAccess(int storeAccessID, AspxCommonInfo aspxCommonObj)
 {
     try
     {
         AspxStoreAccessMgntProvider.DeletStoreAccess(storeAccessID, aspxCommonObj);
     }
     catch (Exception e)
     {
         throw e;
     }
 }
예제 #2
0
 public static void SaveUpdateStoreAccess(int edit, int storeAccessKeyID, string storeAccessData, string reason, bool isActive, AspxCommonInfo aspxCommonObj)
 {
     try
     {
         AspxStoreAccessMgntProvider.SaveUpdateStoreAccess(edit, storeAccessKeyID, storeAccessData, reason, isActive, aspxCommonObj);
     }
     catch (Exception e)
     {
         throw e;
     }
 }
예제 #3
0
 public static List<StoreAccessInfo> LoadStoreAccessCustomer(int offset, int limit, string search, System.Nullable<DateTime> startDate, System.Nullable<DateTime> endDate, System.Nullable<bool> status, AspxCommonInfo aspxCommonObj)
 {
     try
     {
         List<StoreAccessInfo> lstStoreAccess = AspxStoreAccessMgntProvider.LoadStoreAccessCustomer(offset, limit, search, startDate, endDate, status, aspxCommonObj);
         return lstStoreAccess;
     }
     catch (Exception e)
     {
         throw e;
     }
 }
예제 #4
0
 public static List<StoreAccessKey> GetStoreKeyID()
 {
     try
     {
         List<StoreAccessKey> lstStAccessKey = AspxStoreAccessMgntProvider.GetStoreKeyID();
         return lstStAccessKey;
     }
     catch (Exception e)
     {
         throw e;
     }
 }
예제 #5
0
 public static List<AspxUserList> GetAspxUserEmail(string email, AspxCommonInfo aspxCommonObj)
 {
     try
     {
         List<AspxUserList> lstUserEmail = AspxStoreAccessMgntProvider.GetAspxUserEmail(email, aspxCommonObj);
         return lstUserEmail;
     }
     catch (Exception e)
     {
         throw e;
     }
 }
예제 #6
0
 public static bool CheckExisting(AspxCommonInfo aspxCommonObj, int storeAccesskeyId, string accessData)
 {
     try
     {
         bool isUnique = AspxStoreAccessMgntProvider.CheckExisting(aspxCommonObj, storeAccesskeyId, accessData);
         return isUnique;
     }
     catch (Exception e)
     {
         throw e;
     }
 }
예제 #7
0
 public static List<StoreAccessAutocomplete> SearchStoreAccess(string text, int keyID)
 {
     try
     {
         List<StoreAccessAutocomplete> lstStoreAccess = AspxStoreAccessMgntProvider.SearchStoreAccess(text, keyID);
         return lstStoreAccess;
     }
     catch (Exception e)
     {
         throw e;
     }
 }
예제 #8
0
       public static List<AspxUserList> GetAspxUser(string userName, AspxCommonInfo aspxCommonObj)
       {
           try
           {

               List<AspxUserList> lstUser = AspxStoreAccessMgntProvider.GetAspxUser(userName, aspxCommonObj);
               return lstUser;
           }
           catch (Exception e)
           {
               throw e;
           }
       }