public List <UserProduct> FindByUsername(string username)
        {
            UserProduct user_product = new UserProduct
            {
                Username = username
            };

            return(user_product_ctr.Find(user_product, "Username"));
        }