public List <ClsCustomServiceDetails> GetCustomServiceDetails(Int64 ServiceID)
 {
     using (ClsService_DAL obj = new ClsService_DAL())
     {
         return(obj.GetCustomServiceDetails(ServiceID));
     }
 }
 public List <ClsServiceList> GetServiceList(int StartCount, int EndCount)
 {
     using (ClsService_DAL obj = new ClsService_DAL())
     {
         return(obj.GetServiceList(StartCount, EndCount));
     }
 }
 public List <ClsServiceList> GetServiceListByCategory(int StartCount, int EndCount, string AliasName)
 {
     using (ClsService_DAL obj = new ClsService_DAL())
     {
         return(obj.GetServiceListByCategory(StartCount, EndCount, AliasName));
     }
 }