예제 #1
0
파일: Program.cs 프로젝트: webberhan/TDD_hw
        public int AddOrder(Order order)
        {
            //Id should be unique
            _OrderList.Add(order);

            return 0;
        }
예제 #2
0
		private void detach_Orders(Order entity)
		{
			this.SendPropertyChanging();
			entity.Customer = null;
		}
예제 #3
0
		private void attach_Orders(Order entity)
		{
			this.SendPropertyChanging();
			entity.Customer = this;
		}
예제 #4
0
 partial void DeleteOrder(Order instance);
예제 #5
0
 partial void UpdateOrder(Order instance);
예제 #6
0
 partial void InsertOrder(Order instance);