Update the business layer to implement the "Add" action
This commit is contained in:
@@ -15,9 +15,9 @@ namespace skydiveLogs_api.Business
|
||||
_dropZoneRepository = dropZoneRepository;
|
||||
}
|
||||
|
||||
public void AddNewDz(DropZone dropZone)
|
||||
public void AddNewDz(DropZone newdropZone)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
_dropZoneRepository.Add(newdropZone);
|
||||
}
|
||||
|
||||
public void DeleteDzById(int id)
|
||||
|
||||
Reference in New Issue
Block a user