Exemplo n.º 1
0
        public bool Execute(string firstName, string lastName, DateTime birthDay, int birthCityId, out Employee e)
        {
            if (!gateway.LoadCity(birthCityId, out var birthCity))
            {
                e = null;
                return(false);
            }

            e = new Employee(firstName, lastName, birthDay, birthCity);
            gateway.InsertEmployee(e);

            return(true);
        }