Example #1
0
 public static string  Save_LookupCategiries_BAL(LookupCategory_Entity objEntity)
 {
     try
     {
         cls_Lookup_DAL objdal = new cls_Lookup_DAL();
         return(objdal.Save_LookupCategiries_DAL(objEntity));
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
Example #2
0
 public static string  Save_LookupValues_BAL(LookupValue_Entity objEntity)
 {
     try
     {
         cls_Lookup_DAL objdal = new cls_Lookup_DAL();
         return(objdal.Save_LookupValues_DAL(objEntity));
     }
     catch (Exception ex)
     {
         //return 0;
         throw new Exception(ex.Message);
     }
 }
Example #3
0
        public static DataTable Get_LookupValues_BAL(int LcatID)
        {
            try
            {
                cls_Lookup_DAL objdal = new cls_Lookup_DAL();
                return(objdal.Get_LookupValues_DAL(LcatID));
            }
            catch (Exception ex)
            {
                return(null);

                throw new Exception(ex.Message);
            }
        }