예제 #1
0
        //Xóa Brand
        public async Task <bool> Delete(object id)
        {
            var glue = _repoGlue.FindById(id);

            _repoGlue.Remove(glue);
            return(await _repoGlue.SaveAll());
        }