1554dd4abc
TODO: for each day, make a new class to display the records in the dgvReport with child displayname, in+in_time, guardian_in, out+out_time, guardian_out, duration.
15 lines
237 B
C#
15 lines
237 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace GreatHomeChildcare.Models
|
|
{
|
|
class Reports
|
|
{
|
|
public string ChildName { get; set; }
|
|
|
|
}
|
|
}
|