Exemplo n.º 1
0
 public static Response <bool> UpdateReintegro(UpdateReintegroRequest filtro)
 {
     try
     {
         var res = ReintegroRepository.UpdateReintegro(filtro);
         return(new Response <bool>(true, res, "", false));
     }
     catch (Exception ex)
     {
         Log.Instance(typeof(BaseLogic)).Error(System.Reflection.MethodBase.GetCurrentMethod().Name, ex);
         return(new Response <bool>(false, false, Message.MsgExcConsultaIgv, false));
     }
 }