Exemplo n.º 1
0
        public async Task <List <ClientForDate> > AllClientForDate()
        {
            List <ClientForDate> list = null;

            try
            {
                _logger.LogInformation(Resources.Product_Initial_Messages);

                list = await _ruleBusiness.AllClientForDate();

                _logger.LogInformation(Resources.Product_Finally_Messages);
            }
            catch (Exception e)
            {
                _logger.LogError(e.Message);
            }

            return(list);
        }