Files
laatzen/LaaProductionWeb/LaaProductionWeb.Services/Interfaces/IOrdersService.cs
T

14 lines
318 B
C#

namespace LaaProductionWeb.Services.Interfaces
{
using LaaProductionWeb.Services.Models;
public interface IOrdersService
{
OrdersFoundModel FindOrders(string search);
OrderPositions FindPositions(string id);
ProductionOrders FindProductionOrders(string productionNr);
}
}