Example #1
0
        public UniversalEntity RetrieveVodomerById(int id)
        {
            VodomerTypeDAO entDAO = new VodomerTypeDAO();

            sc             = new SqlCommand("RetrieveVodomerTypeById");
            sc.CommandType = CommandType.StoredProcedure;
            sc.Parameters.Add("@ID", id);
            return(entDAO.retrieveEntity(sc));
        }