| 123456789101112131415161718 |
- using System;
- using System.Collections.ObjectModel;
- using Comal.Classes;
- using InABox.Core;
- using InABox.Mobile;
- using Plugin.BLE.Abstractions.Extensions;
- namespace PRS.Mobile
- {
-
- public class StockMovementBatchModel : CoreRepository<StockMovementBatchModel, StockMovementBatchShell, StockMovementBatch>
- {
- public StockMovementBatchModel(IModelHost host, Func<Filter<StockMovementBatch>> filter): base(host, filter)
- {
- }
-
- }
- }
|