Client fixes

Client is partially done.
227 warnings left out of 1500
I like Rider
This commit is contained in:
Pavel Vesely
2020-03-15 15:18:32 +01:00
parent 5b3feaf26f
commit cf6643aef3
92 changed files with 1283 additions and 1262 deletions

View File

@ -8,16 +8,16 @@ namespace Oqtane.Services
{
Task<List<Job>> GetJobsAsync();
Task<Job> GetJobAsync(int JobId);
Task<Job> GetJobAsync(int jobId);
Task<Job> AddJobAsync(Job Job);
Task<Job> AddJobAsync(Job job);
Task<Job> UpdateJobAsync(Job Job);
Task<Job> UpdateJobAsync(Job job);
Task DeleteJobAsync(int JobId);
Task DeleteJobAsync(int jobId);
Task StartJobAsync(int JobId);
Task StartJobAsync(int jobId);
Task StopJobAsync(int JobId);
Task StopJobAsync(int jobId);
}
}