Ejemplo n.º 1
0
 public void Initialize()
 {
     _sut    = new RESTHelper();
     _client = new RestClient(EmployeesEndpoint);
     if (_sut.DoesAnyEntityExist(_client))
     {
         _sut.DeleteAllEntities(_client);
     }
 }
Ejemplo n.º 2
0
 public void Dispose()
 {
     _sut.DeleteAllEntities(_client);
     _sut    = null;
     _client = null;
 }