Exemple #1
0
        public LocomotiveDTO Read(int id)
        {
            LocomotiveDTO locoDTO = new LocomotiveDTO();

            var data = repo.Read(id);

            return(locoDTO);
        }
Exemple #2
0
        public void Locomotives()
        {
            LocomotiveDTO locoDTO = new LocomotiveDTO();

            var data = repo.Read();
        }