Example #1
0
        public IBOQuarterlyOrders BOQuarterlyOrders(IQuarterlyOrdersRepository repo)
        {
            BOQuarterlyOrders boQuarterlyOrders = (BOQuarterlyOrders)BOQuarterlyOrders();

            boQuarterlyOrders.Repository = repo;
            return(boQuarterlyOrders);
        }
Example #2
0
        public IBOQuarterlyOrders BOQuarterlyOrders()
        {
            var boQuarterlyOrders = new BOQuarterlyOrders()
            {
                CustomerID  = this.CustomerID,
                CompanyName = this.CompanyName,
                City        = this.City,
                Country     = this.Country
            };

            return(boQuarterlyOrders);
        }