public bool Update(Virus item)
 {
     throw new System.NotImplementedException();
 }
 public bool Add(Virus item)
 {
     _antivirusContext.Add(item);
     _antivirusContext.SaveChanges();
     return(true);
 }