Update the business layer to implement the "Add" action
This commit is contained in:
@@ -15,9 +15,9 @@ namespace skydiveLogs_api.Business
|
||||
_jumpTypeRepository = jumpTypeRepository;
|
||||
}
|
||||
|
||||
public void AddNewJumpType(JumpType value)
|
||||
public void AddNewJumpType(JumpType newJumpType)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
_jumpTypeRepository.Add(newJumpType);
|
||||
}
|
||||
|
||||
public void DeleteJumpTypeById(int id)
|
||||
|
||||
Reference in New Issue
Block a user