Example #1
0
 public List <App_Lawer_Info> GetApp_Grant4Lawer(decimal p_lawer_id, decimal p_user_type, string p_language_code)
 {
     try
     {
         App_Lawer_DA _da = new App_Lawer_DA();
         DataSet      _ds = _da.GetApp_Grant4Lawer(p_lawer_id, p_user_type, p_language_code);
         return(CBO <App_Lawer_Info> .FillCollectionFromDataSet(_ds));
     }
     catch (Exception ex)
     {
         Logger.LogException(ex);
         return(new List <App_Lawer_Info>());
     }
 }