24 lines
747 B
C#
24 lines
747 B
C#
using System.Collections.Generic;
|
|
|
|
namespace BeWoPlanerMobil.Models
|
|
{
|
|
public class AppointmentSessionModel : BaseSessionModel
|
|
{
|
|
public List<long> SelectedEmployeeOids { get; set; }
|
|
public List<long> SelectedCustomerOids { get; set; }
|
|
public List<long> SelectedResourceOids { get; set; }
|
|
|
|
public List<long> SelectedEmployees2AppointmentOids { get; set; } = new List<long>();
|
|
|
|
|
|
public override void ResetValues()
|
|
{
|
|
base.ResetValues();
|
|
|
|
SelectedCustomerOids = new List<long>();
|
|
SelectedEmployeeOids = new List<long>();
|
|
SelectedResourceOids = new List<long>();
|
|
SelectedEmployees2AppointmentOids = new List<long>();
|
|
}
|
|
}
|
|
} |