AspNetCorePostgreSQLDockerApp.Repository.CustomersRepository.GetStatesAsync C# (CSharp) Method

GetStatesAsync() public method

public GetStatesAsync ( ) : Task>
return Task>
        public async Task<List<State>> GetStatesAsync()
        {
            return await _context.States.OrderBy(s => s.Abbreviation).ToListAsync();
        }