コード例 #1
0
        public string GetInformes(string CodCon)
        {
            CGContratistaBLL o = new CGContratistaBLL();

            string username = Usuario.UserName;
            return ByAUtil.convertListToXML(o.GetInformes(CodCon).OrderByDescending(t=> t.NUM_INF).ToList());
        }
コード例 #2
0
 public List<vINT_INFOCONT> GetInfoCon(string cod_con)
 {
     CGContratistaBLL o =new CGContratistaBLL();
     //solo los activos
     //anulados no , deberian ser los revisados.
     return o.GetInformes(cod_con).Where(t => t.EST_INF == "AC").ToList();
 }