feature: Schema, Migrations, Core CRUD, and Redis Threshold Cache
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
public interface IAlertThresholdService
|
||||
{
|
||||
Task<AlertThreshold> CreateAsync(AlertThresholdRequest req);
|
||||
Task<List<AlertThreshold>> ListAsync();
|
||||
Task<AlertThreshold> GetByIdAsync(Guid id);
|
||||
Task<AlertThreshold> UpdateAsync(Guid id, AlertThresholdRequest req);
|
||||
}
|
||||
Reference in New Issue
Block a user