Example #1
0
        public static Collection <StrelbaDTO> GetDTOs()
        {
            Collection <Strelba>    strelby = Strelba.SelectAll();
            Collection <StrelbaDTO> DT      = new Collection <StrelbaDTO>();

            foreach (var str in strelby)
            {
                DT.Add(new StrelbaDTO(str));
            }

            return(DT);
        }