18 lines
448 B
C#
18 lines
448 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using AyCode.Database;
|
|
using Microsoft.Identity.Client;
|
|
using TIAM.Database.DbContexts;
|
|
using TIAM.Entities.TransferDestinations;
|
|
|
|
namespace TIAM.Database.DataLayers.TransferDestinations;
|
|
|
|
public class TransferDestinationDal : TiamDalBase<TransferDestinationDbContext>
|
|
{
|
|
public TransferDestinationDal() : base()
|
|
{
|
|
}
|
|
} |