Removed duplicate API endpoints

This commit is contained in:
TypoMustakes
2023-12-07 20:01:50 +01:00
parent 499ddbd4f8
commit 1df31df98e
2 changed files with 0 additions and 19 deletions

View File

@@ -16,16 +16,9 @@ namespace WD7UVN_HFT_2023241.Endpoint
this.LogicServices = LogicServices;
}
[HttpGet("WhoUsesService/{id}")]
public IQueryable<Customer> WhoUsesService(int id)
{
return LogicServices.WhoUsesService(id);
}
[HttpGet()]
public IQueryable<Customer> ReadAllCustomers()
{
return LogicServices.CRUDOperations.ReadAllCustomers();
}