Add AutoMapper and update the interface of business services
This commit is contained in:
@@ -1,10 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using skydiveLogs_api.Model;
|
||||
|
||||
namespace skydiveLogs_api.Business.Interface
|
||||
{
|
||||
public interface IJumpService
|
||||
{
|
||||
IEnumerable<skydiveLogs_api.DataContract.JumpResp> GetAllJumps();
|
||||
skydiveLogs_api.DataContract.JumpResp GetJumpById(int id);
|
||||
void AddNewJump(Jump jump);
|
||||
void UpdateJump(int id, Jump jump);
|
||||
void DeleteJumpById(int id);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user