using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_Core.BaseRepository; using WIDESEA_Core.Enums; using WIDESEA_Core; using WIDESEA_IBasicService; using WIDESEA_Model.Models; using WIDESEA_Core.Helper; namespace WIDESEA_BasicService { public class BasicService : IBasicService { public IPalletCodeInfoService PalletCodeInfoService { get; } public ILocationInfoService LocationInfoService { get; } public IMaterielInfoService MaterielInfoService { get; } public IWarehouseService WarehouseService { get; } public IMaterielCodeInfoService MaterielCodeInfoService { get; } public ISupplierInfoService SupplierInfoService { get; } public ICustomerInfoService CustomerInfoService { get; } public IUserInfoService UserInfoService { get; } public BasicService(ILocationInfoService locationInfoService, IMaterielInfoService materielInfoService, IWarehouseService warehouseService,IPalletCodeInfoService palletCodeInfoService, IMaterielCodeInfoService materielCodeInfoService, ISupplierInfoService supplierInfoService, ICustomerInfoService customerInfoService,IUserInfoService userInfoService) { LocationInfoService = locationInfoService; MaterielInfoService = materielInfoService; WarehouseService = warehouseService; PalletCodeInfoService = palletCodeInfoService; MaterielCodeInfoService = materielCodeInfoService; SupplierInfoService = supplierInfoService; CustomerInfoService = customerInfoService; UserInfoService = userInfoService; } } }