Exemplo n.º 1
0
        public SingleRsp UpdateTheTV(TheTVReq thethuvien)
        {
            var        res        = new SingleRsp();
            Thethuvien Thethuvien = new Thethuvien();

            Thethuvien.MaThe  = thethuvien.MaThe;
            Thethuvien.NgayBd = thethuvien.NgayBd;
            Thethuvien.NgayHh = thethuvien.NgayHh;
            res = _rep.UpdateThethuvien(Thethuvien);
            return(res);
        }
Exemplo n.º 2
0
        public IActionResult UpdateTheTV(TheTVReq req)
        {
            var res = _svc.UpdateTheTV(req);

            return(Ok(res));
        }