fix: rename ordering service obj type alias
This commit is contained in:
parent
a17cc52633
commit
d738fe54a7
1 changed files with 2 additions and 2 deletions
|
@ -159,7 +159,7 @@ impl OrderingServicesInterface for OrderingServices {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub type OrderingServicesInterfaceObj = Arc<dyn OrderingServicesInterface>;
|
pub type OrderingServicesObj = Arc<dyn OrderingServicesInterface>;
|
||||||
|
|
||||||
impl OrderingServices {
|
impl OrderingServices {
|
||||||
pub fn new(
|
pub fn new(
|
||||||
|
@ -179,7 +179,7 @@ impl OrderingServices {
|
||||||
out_db_store_name_exists: StoreNameExistsDBPortObj,
|
out_db_store_name_exists: StoreNameExistsDBPortObj,
|
||||||
|
|
||||||
out_fts_add_product_to_store: AddProductToStoreFTSPortObj,
|
out_fts_add_product_to_store: AddProductToStoreFTSPortObj,
|
||||||
) -> OrderingServicesInterfaceObj {
|
) -> OrderingServicesObj {
|
||||||
let add_line_item = Arc::new(
|
let add_line_item = Arc::new(
|
||||||
AddLineItemServiceBuilder::default()
|
AddLineItemServiceBuilder::default()
|
||||||
.db_line_item_id_exists(out_db_line_item_id_exists.clone())
|
.db_line_item_id_exists(out_db_line_item_id_exists.clone())
|
||||||
|
|
Loading…
Add table
Reference in a new issue