| using System; | 
| using System.Collections.Generic; | 
| using System.Linq; | 
| using System.Text; | 
| using System.Threading.Tasks; | 
| using WIDESEA_IRecordService; | 
|   | 
| namespace WIDESEA_RecordService | 
| { | 
|     public class RecordService : IRecordService | 
|     { | 
|         public ILocationStatusChangeRecordSetvice LocationStatusChangeRecordSetvice { get; } | 
|   | 
|         public IStockQuantityChangeRecordService StockQuantityChangeRecordService { get; } | 
|   | 
|         public RecordService(ILocationStatusChangeRecordSetvice locationStatusChangeRecordSetvice, IStockQuantityChangeRecordService stockQuantityChangeRecordService) | 
|         { | 
|             LocationStatusChangeRecordSetvice = locationStatusChangeRecordSetvice; | 
|             StockQuantityChangeRecordService = stockQuantityChangeRecordService; | 
|         } | 
|     } | 
| } |