12345678910111213141516171819202122232425 |
- using Comal.Classes;
- using System.Collections.Generic;
- using System.Text;
- namespace Comal.TaskScheduler.Shared
- {
- public class CustomerSchedulePlugin : SchedulePlugin<Customer>
- {
- public override void LoadJob(Job job, Schedule schedule, Customer entity)
- {
- base.LoadJob(job, schedule, entity);
- // Load Up Customer Information here
- }
- public override void LoadKanban(Kanban kanban, Schedule schedule, Customer entity)
- {
- base.LoadKanban(kanban, schedule, entity);
- // Load Up Customer Information here
- }
- }
- }
|