Esempio n. 1
0
        public DataTable sp_del_sectorVectorBLL(SectorVectorBO sectorVector)
        {
            DataTable dt = new DataTable();

            try
            {
                dt = new SectorVectorDAL().sp_del_sectorVectorDAL(sectorVector);
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return(dt);
        }
Esempio n. 2
0
        public string sp_sel_sectorVectorIDDAL(Int64 nro_tarja)
        {
            DataTable dt = new DataTable();

            try
            {
                dt = new SectorVectorDAL().sp_sel_sectorVectorIDDAL(nro_tarja);
            }
            catch (Exception ex)
            {
                throw ex;
            }

            string jsonSector = JsonConvert.SerializeObject(dt);

            return(jsonSector);
        }