Example #1
0
        public IEnumerable <SupplierView> GetSuppliersByLocation(string location)
        {
            var suppliers = suppliersService.GetSuppliersByLocation(location);

            return(mapper.Map <IEnumerable <SupplierDTO>, IEnumerable <SupplierView> >(suppliers));
        }