Exemplo n.º 1
0
        public EmployeesQuery WithBirthDate(DateQuery birthDateQuery)
        {
            var obj = this.Clone();

            obj.BirthDate = birthDateQuery;
            return(obj);
        }
Exemplo n.º 2
0
        public EmployeesQuery WithHireDate(DateQuery hireDateQuery)
        {
            var obj = this.Clone();

            obj.HireDate = hireDateQuery;
            return(obj);
        }