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