Exemplo n.º 1
0
        /// <summary>
        /// Gets the employee.
        /// </summary>
        /// <param name="email">The email.</param>
        /// <returns></returns>
        public async Task <Employee> GetEmployee(string email)
        {
            var data = await dbContext.GetEmployee(email);

            return(data);
        }