Exemplo n.º 1
0
 public bool ExisteCedula(int idEmpresa, decimal idAspirante, string cedulaRuc, ref string mensaje)
 {
     try
     {
         Aca_Aspirante_Data da = new Aca_Aspirante_Data();
         return(da.ExisteCedula(idEmpresa, idAspirante, cedulaRuc, ref mensaje));
     }
     catch (Exception ex)
     {
         Core.Erp.Info.Log_Exception.LoggingManager.Logger.Log(Core.Erp.Info.Log_Exception.LoggingCategory.Error, ex.Message);
         throw new Core.Erp.Info.Log_Exception.DalException(string.Format("", "ExisteCedula", ex.Message), ex)
               {
                   EntityType = typeof(Aca_Aspirante_Bus)
               };
     }
 }
Exemplo n.º 2
0
 public Aca_Aspirante_Bus()
 {
     da = new Aca_Aspirante_Data();
 }