Пример #1
0
        /// <inheritdoc />
        public NorthwindCustomerModel[] GetNorthwindCustomers()
        {
            var customerRepository = new NorthwindCustomRepository();

            var result = customerRepository.GetAll();

            return(result);
        }
Пример #2
0
        static void Main(string[] args)
        {
            LogHelper.EnableDebugMode();
            LogHelper.InjectLog4NetLogger(Log);
            LogHelper.GetConfiguredLog4Net(Log4NetConfigPath);

            var customerRepository = new NorthwindCustomRepository();

            var result = customerRepository.GetAll();
        }