16 lines
390 B
C#
16 lines
390 B
C#
using PARR.DAL.Models.Unit;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PARR.DAL.Services.Interfaces.Unit
|
|
{
|
|
public interface IUnitInValueService
|
|
{
|
|
Task<List<UnitInValue>> GetByUnitIdsAsync(IEnumerable<Guid> unitIds);
|
|
Task<List<UnitInValue>> GetByUnitIdAsync(Guid unitId);
|
|
}
|
|
}
|