Example #1
0
        public int CreateVodomerType(VodomerType ent)
        {
            int            createdid = 0;
            VodomerTypeDAO entDAO    = new VodomerTypeDAO();

            sc             = new SqlCommand("CreateVodomerType");
            sc.CommandType = CommandType.StoredProcedure;
            addParameters(ent);
            createdid = entDAO.createEntity(sc);
            return(createdid);
        }