public void Save()
 {
     try
     {
         _context.SaveChanges();
     }
     catch (Exception x)
     {
         throw new NotImplementedException("Error occured during saving of Object.");
     }
 }