Exemplo n.º 1
0
        public void DeleteBand(m_cls_Band band)
        {
            if (band == null)
            {
                throw new ArgumentNullException(nameof(band));
            }

            _context.Bands.Remove(band);

            //throw new NotImplementedException();
        }
Exemplo n.º 2
0
 public void UpdateBand(m_cls_Band band)
 {
     //not implemented
     //throw new NotImplementedException();
 }