Exemple #1
0
 public ProcessResult Process(OrderOL obj)
 {
     //TODO:
     // 1- resolve OrderRepositorySQL
     // 2- create order
     // 3- resolve the other repository
     // 4- create order
     // 5- return the operation result
 }
Exemple #2
0
 public ActionResult Create(OrderOL obj)
 {
     var result = processor.Process(obj)
                  return(view());
 }