using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PersonalFinance.Entity { class Scheduler { public void Run(){ } private void Daily() { //podiva se na naposledy pouzite casy u ScheduleItem ktere maji nastaveno daily //a provede zapis techto plateb tolikrat kolikrat je potreba } private void Weekly() { } private void Monthly() { } private void Quartely() { } private void Biannually() { } private void Yearly() { } } }