Exemplo n.º 1
0
        public new string GetKey()
        {
            string key = "/api/movies";

            key += $"/{PageNumber}/{PageSize}/{Year}/{Rating}";
            key += $"/{(string.IsNullOrWhiteSpace(Q) ? string.Empty : Q.Trim().ToUpperInvariant())}";
            key += $"/{(string.IsNullOrWhiteSpace(Genre) ? string.Empty : Genre.Trim().ToUpperInvariant())}";
            key += $"/{(string.IsNullOrWhiteSpace(ActorId) ? string.Empty : ActorId.Trim().ToUpperInvariant())}";

            return(key);
        }