//Dependency injection Abstraction
 public DeleteEntry(IDeleteEntryOutput deleteEntryOutput, ICaseCRUD caseCRUD, IPropertyCRUD propertyCRUD, IAddressCRUD addressCRUD)
 {
     _deleteEntryOutput = deleteEntryOutput;
     _caseCRUD          = caseCRUD;
     _propertyCRUD      = propertyCRUD;
     _addressCRUD       = addressCRUD;
 }