Exemplo n.º 1
0
 public static Response <List <SelectReintegroEntity> > ListaOpcionesModificacion()
 {
     try
     {
         var lista = ReintegroRepository.ListaOpcionesModificacion();
         return(new Response <List <SelectReintegroEntity> >(true, lista, Message.MsgCorrectoListaOpcionesModificacion, true));
     }
     catch (Exception ex)
     {
         Log.Instance(typeof(BaseLogic)).Error(System.Reflection.MethodBase.GetCurrentMethod().Name, ex);
         return(new Response <List <SelectReintegroEntity> >(false, null, Message.MsgExcListaOpcionesModificacion, false));
     }
 }