public static List <ServiceProviderInfo> GetServiceProviderNameListFront(AspxCommonInfo aspxCommonObj, int storeBranchId, int serviceCategoryId)
 {
     try
     {
         List <ServiceProviderInfo> lstServProv = AspxServiceProvider.GetServiceProviderNameListFront(aspxCommonObj, storeBranchId, serviceCategoryId);
         return(lstServProv);
     }
     catch (Exception e)
     {
         throw e;
     }
 }
 public List<ServiceProviderInfo> GetServiceProviderNameListFront(AspxCommonInfo aspxCommonObj, int storeBranchId, int serviceCategoryId)
 {
     try
     {
         AspxServiceProvider objService = new AspxServiceProvider();
         List<ServiceProviderInfo> lstServProv = objService.GetServiceProviderNameListFront(aspxCommonObj, storeBranchId, serviceCategoryId);
         return lstServProv;
     }
     catch (Exception e)
     {
         throw e;
     }
 }