Add a controler for "User" (add and authenticate)
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
using skydiveLogs_api.Model;
|
||||
|
||||
|
||||
namespace skydiveLogs_api.Business.Interface
|
||||
{
|
||||
public interface IGearService
|
||||
@@ -11,8 +13,8 @@ namespace skydiveLogs_api.Business.Interface
|
||||
|
||||
void DeleteGearById(int id);
|
||||
|
||||
void UpdateGear(int id, Gear Gear);
|
||||
void UpdateGear(int id, Gear gear);
|
||||
|
||||
void AddNewGear(Gear Gear);
|
||||
void AddNewGear(Gear gear);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user