1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| using Masuit.Tools;
| using Newtonsoft.Json.Serialization;
| using System.ComponentModel.DataAnnotations;
| using WIDESEA_Common.Boxing;
| using WIDESEA_Model.Models;
|
| namespace WIDESEA_StorageBasicService;
|
| public class Dt_CarBodyService : ServiceBase<Dt_CarBody, IDt_CarBodyRepository>, IDt_CarBodyService
| {
| public Dt_CarBodyService(IDt_CarBodyRepository BaseDal) : base(BaseDal)
| {
|
|
| }
| }
|
|