Пример #1
0
        public async Task <double> ComputePrice(double metalPrice, double weight, int itemId)
        {
            var claim = _httpServices.GetClaimsIdentity(HttpContext);

            return(await _itemsBLL.ComputeTotalPriceAsync(metalPrice, weight, itemId, claim.UserType, claim.UserName));
        }