Admin
2026-03-23 bae6e7f729be1289a154505832963b4c9e9a4e5f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEAWCS_Core.BaseServices;
using WIDESEAWCS_ISystemRepository;
using WIDESEAWCS_ISystemServices;
using WIDESEAWCS_Model;
using WIDESEAWCS_Model.Models;
using WIDESEAWCS_Model.Models.System;
 
namespace WIDESEAWCS_SystemServices
{
    public class Dt_PlatformStationService : ServiceBase<Dt_PlatformStation, IDt_PlatformStationRepository>, IDt_PlatformStationService
    {
        public Dt_PlatformStationService(IDt_PlatformStationRepository BaseDal) : base(BaseDal)
        {
        }
    }
}