BAL.Manager.TariffExManager.GetAllTariffs C# (CSharp) Method

GetAllTariffs() public method

public GetAllTariffs ( ) : IEnumerable
return IEnumerable
        public IEnumerable<TariffExDTO> GetAllTariffs()
        {
            var tariffs = uOW.TariffExRepo.All.ToList();
            return tariffs.Select(x => Mapper.Map<TariffExDTO>(x));
        }