public IActionResult RegisterDiscount([FromBody] Discount discount)                      //Tạo khuyến mãi cho quán
        {
            string err = "";

            try{
                var           identity = HttpContext.User.Identity as ClaimsIdentity;             //khai báo biến danh tính của token
                IList <Claim> claim    = identity.Claims.ToList();                                //Danh sách các biến trong identity
                string        Email    = claim[1].Value;                                          //Email của token
                User          infoUser = new User();                                              //Khai bao biến thông tin người dùng
                if (infoUser.kiemtrathoigianlogin(DateTime.Parse(claim[0].Value)) == true)        //kiểm tra thời gian đăng nhập còn không
                {
                    if (infoUser.checkAdmin(Email) == true || infoUser.checkOwner(Email) == true) //Kiểm tra có phải admin hoặc owner không
                    {
                        Discount discount1 = new Discount();                                      //Khai báo biến Model Discount
                        discount1.AddToFireBase(discount);                                        //Thêm data
                        err = "Đăng ký thành công";
                    }
                    else
                    {
                        err = "Bạn Không có quyền";
                    }
                }
                else
                {
                    return(Ok(new[] { "Bạn cần đăng nhập" }));
                }
            }
            catch {
                err = "Error";
            }
            return(Ok(new[] { err }));
        }