Exemple #1
0
 public List <T_OA_AREACITY> GetAreaCityByCategory(string categoryID)
 {
     using (AreaAllowanceBll bll = new AreaAllowanceBll())
     {
         return(bll.GetAreaCityByCategory(categoryID));
     }
 }
Exemple #2
0
 public T_OA_AREAALLOWANCE GetAreaAllowanceByID(string ID)
 {
     using (AreaAllowanceBll bll = new AreaAllowanceBll())
     {
         return(bll.GetAreaAllowanceByID(ID));
     }
 }
Exemple #3
0
 public Dictionary <string, string> AreaCityCheck(List <T_OA_AREACITY> objs, string areadifferenceid)
 {
     using (AreaAllowanceBll bll = new AreaAllowanceBll())
     {
         return(bll.AreaCityCheck(objs, areadifferenceid));
     }
 }
Exemple #4
0
 public List <T_OA_AREAALLOWANCE> GetAreaAllowanceByAreaID(string ID, string SolutionID)
 {
     using (AreaAllowanceBll bll = new AreaAllowanceBll())
     {
         return(bll.GetAreaAllowanceByAreaID(ID, SolutionID));
     }
 }
Exemple #5
0
 public string AreaCityLotsofAdd(List <T_OA_AREACITY> objs)
 {
     using (AreaAllowanceBll bll = new AreaAllowanceBll())
     {
         return(bll.AreaCityLotsofAdd(objs));
     }
 }
Exemple #6
0
 public List<T_OA_AREAALLOWANCE> GetAreaAllowanceByAreaID(string ID, string SolutionID)
 {
     using (AreaAllowanceBll bll = new AreaAllowanceBll())
     {
         return bll.GetAreaAllowanceByAreaID(ID, SolutionID);
     }
 }
Exemple #7
0
 public void AreaCityDelete(string[] IDs)
 {
     using (AreaAllowanceBll bll = new AreaAllowanceBll())
     {
         bll.AreaCityDelete(IDs);
     }
 }
Exemple #8
0
 public void AreaAllowance(List<T_OA_AREAALLOWANCE> objs, string travelSolutionsId)
 {
     using (AreaAllowanceBll bll = new AreaAllowanceBll())
     {
         bll.AreaAllowance(objs, travelSolutionsId);
     }
 }
Exemple #9
0
 public void AreaAllowanceADD(T_OA_AREAALLOWANCE obj, string travelSolutionsId)
 {
     using (AreaAllowanceBll bll = new AreaAllowanceBll())
     {
         bll.AreaAllowanceAdd(obj, travelSolutionsId);
     }
 }
Exemple #10
0
 public void AreaAllowanceUpdate(T_OA_AREAALLOWANCE obj)
 {
     using (AreaAllowanceBll bll = new AreaAllowanceBll())
     {
         bll.AreaAllowanceUpdate(obj);
     }
 }
Exemple #11
0
 public void AreaAllowanceADD(T_OA_AREAALLOWANCE obj, string travelSolutionsId)
 {
     using (AreaAllowanceBll bll = new AreaAllowanceBll())
     {
         bll.AreaAllowanceAdd(obj, travelSolutionsId);
     }
 }
Exemple #12
0
 public void AreaAllowanceUpdate(T_OA_AREAALLOWANCE obj)
 {
     using (AreaAllowanceBll bll = new AreaAllowanceBll())
     {
         bll.AreaAllowanceUpdate(obj);
     }
 }
Exemple #13
0
 public void AreaAllowance(List <T_OA_AREAALLOWANCE> objs, string travelSolutionsId)
 {
     using (AreaAllowanceBll bll = new AreaAllowanceBll())
     {
         bll.AreaAllowance(objs, travelSolutionsId);
     }
 }
Exemple #14
0
 public bool AreaCityByCategoryDelete(string CategoryID, string delCode)
 {
     using (AreaAllowanceBll bll = new AreaAllowanceBll())
     {
         return(bll.AreaCityByCategoryDelete(CategoryID, delCode));
     }
 }
Exemple #15
0
 public void AreaCityAdd(T_OA_AREACITY obj)
 {
     using (AreaAllowanceBll bll = new AreaAllowanceBll())
     {
         bll.AreaCityAdd(obj);
     }
 }
Exemple #16
0
 public bool AreaAllowanceDelete(string[] IDs)
 {
     using (AreaAllowanceBll bll = new AreaAllowanceBll())
     {
         int rslt = bll.AreaAllowanceDelete(IDs);
         return (rslt > 0);
     }
 }
Exemple #17
0
 public bool AreaAllowanceDelete(string[] IDs)
 {
     using (AreaAllowanceBll bll = new AreaAllowanceBll())
     {
         int rslt = bll.AreaAllowanceDelete(IDs);
         return(rslt > 0);
     }
 }
Exemple #18
0
 public List <T_OA_AREACITY> GetAreaCityWithPaging(int pageIndex, int pageSize, string sort, string filterString, string[] paras, ref int pageCount)
 {
     using (AreaAllowanceBll bll = new AreaAllowanceBll())
     {
         IQueryable <T_OA_AREACITY> q = bll.QueryCityWithPaging(pageIndex, pageSize, sort, filterString, paras, ref pageCount);
         return(q.Count() > 0 ? q.ToList() : null);
     }
 }
Exemple #19
0
 public void AreaCityAdd(T_OA_AREACITY obj)
 {
     using (AreaAllowanceBll bll = new AreaAllowanceBll())
     {
         bll.AreaCityAdd(obj);
     }
 }
Exemple #20
0
 public string AreaCityLotsofAdd(List<T_OA_AREACITY> objs)
 {
     using (AreaAllowanceBll bll = new AreaAllowanceBll())
     {
         return bll.AreaCityLotsofAdd(objs);
     }
 }
Exemple #21
0
 public void AreaCityDelete(string[] IDs)
 {
     using (AreaAllowanceBll bll = new AreaAllowanceBll())
     {
         bll.AreaCityDelete(IDs);
     }
 }
Exemple #22
0
        public List<T_OA_AREACITY> GetAreaCityWithPaging(int pageIndex, int pageSize, string sort, string filterString, string[] paras, ref int pageCount)
        {
            using (AreaAllowanceBll bll = new AreaAllowanceBll())
            {

                IQueryable<T_OA_AREACITY> q = bll.QueryCityWithPaging(pageIndex, pageSize, sort, filterString, paras, ref  pageCount);
                return q.Count() > 0 ? q.ToList() : null;
            }
        }
Exemple #23
0
 public T_OA_AREAALLOWANCE GetAreaAllowanceByID(string ID)
 {
     using (AreaAllowanceBll bll = new AreaAllowanceBll())
     {
         return bll.GetAreaAllowanceByID(ID);
     }
 }
Exemple #24
0
 public bool AreaCityByCategoryDelete(string CategoryID,string delCode)
 {
     using (AreaAllowanceBll bll = new AreaAllowanceBll())
     {
         return bll.AreaCityByCategoryDelete(CategoryID,delCode);
     }
 }
Exemple #25
0
 public List<T_OA_AREACITY> GetAreaCityByCategory(string categoryID)
 {
     using (AreaAllowanceBll bll = new AreaAllowanceBll())
     {
         return bll.GetAreaCityByCategory(categoryID);
     }
 }
Exemple #26
0
 public Dictionary<string, string> AreaCityCheck(List<T_OA_AREACITY> objs, string areadifferenceid)
 {
     using (AreaAllowanceBll bll = new AreaAllowanceBll())
     {
         return bll.AreaCityCheck(objs, areadifferenceid);
     }
 }