Implementation of repositories and return infos

This commit is contained in:
Sébastien André
2019-09-26 15:31:17 +02:00
parent 4d6787af20
commit ed3f7c42c5
34 changed files with 1382 additions and 8 deletions

View File

@@ -1,11 +1,44 @@
using skydiveLogs_api.Business.Interface;
using skydiveLogs_api.Model;
using System;
using System.Collections.Generic;
using System.Text;
using skydiveLogs_api.Data.Interface;
namespace skydiveLogs_api.Business
{
public class JumpTypeService : IJumpTypeService
{
public JumpTypeService(IJumpTypeRepository jumpTypeRepository)
{
_jumpTypeRepository = jumpTypeRepository;
}
public void AddNewJumpType(JumpType value)
{
throw new NotImplementedException();
}
public void DeleteJumpTypeById(int id)
{
throw new NotImplementedException();
}
public IEnumerable<JumpType> GetAllJumpTypes()
{
return _jumpTypeRepository.GetAllJumpTypes();
}
public JumpType GetJumpTypeById(int id)
{
throw new NotImplementedException();
}
public void UpdateJumpType(int id, JumpType value)
{
throw new NotImplementedException();
}
private readonly IJumpTypeRepository _jumpTypeRepository;
}
}