You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
426 B
19 lines
426 B
using Entity.DbModel.Station;
|
|
using HybirdFrameworkCore.Autofac.Attribute;
|
|
using Repository.Station;
|
|
using Service.Execute.Api;
|
|
|
|
namespace Service.Mgr;
|
|
|
|
[Scope()]
|
|
public class SwapOrderMgr
|
|
{
|
|
public SwapOrderReportCloudRepository _reportCloudRepository { get; set; }
|
|
|
|
public SwapOrderRepository _swapOrderRepository { get; set; }
|
|
|
|
public SwapOrderBatteryRepository _swapOrderBatteryRepository { get; set; }
|
|
|
|
|
|
|
|
} |