School Commit Init
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
#include "service.h"
|
||||
#include <algorithm>
|
||||
|
||||
Service::Service()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
Service::~Service()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void Service::addTask(std::string description, int duration, std::string date)
|
||||
{
|
||||
Task task(description, duration, date);
|
||||
this->repo.addTask(task);
|
||||
}
|
||||
|
||||
std::vector<Task> Service::getTasks()
|
||||
{
|
||||
auto tasks = this->repo.getTasks();
|
||||
std::sort(tasks.begin(), tasks.end(), [](Task task1, Task task2) {
|
||||
if(task1.getDate() == task2.getDate())
|
||||
return task1.getDuration() > task2.getDuration();
|
||||
return task1.getDate() > task2.getDate();
|
||||
});
|
||||
return tasks;
|
||||
}
|
||||
|
||||
std::vector<Task> Service::getTasksForDate(std::string date)
|
||||
{
|
||||
auto tasks = this->repo.getTasks();
|
||||
std::vector<Task> filteredTasks;
|
||||
for (auto task : tasks) {
|
||||
if(task.getDate() == date)
|
||||
filteredTasks.push_back(task);
|
||||
}
|
||||
return filteredTasks;
|
||||
}
|
||||
Reference in New Issue
Block a user