Admin
2026-03-12 4452684129f1b7e74e1dae9af7ffa81d61ad181f
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)
        {
        }
    }
}