public void Update(Employee e) { this.Delete(e.Id.ToString()); employees.Add(e); }
public void Create(Employee e) { employees.Add(e); }