Ejemplo n.º 1
0
        public bool DeleteProfile(int profileId)
        {
            SqlConnection con = new DbConnection().GetConnection();

            try
            {
                return(dbProfile.DeleteProfile(profileId, null, con));
            }
            finally
            {
                con.Close();
            }
        }
Ejemplo n.º 2
0
 public bool DeleteProfile(int profileId)
 {
     return(dbProfile.DeleteProfile(profileId));
 }