Beispiel #1
0
 public static List <LogOportunidadBean> getAll(String idOportunidad)
 {
     try
     {
         return(LogOportunidadModel.GetAll(idOportunidad));
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
Beispiel #2
0
 public static Int32 Insert(LogOportunidadBean item)
 {
     try
     {
         return(LogOportunidadModel.Insert(item));
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }