16 lines
405 B
C#
16 lines
405 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using _0_Framework.Domain;
|
|
using CompanyManagment.App.Contracts.WorkshopPlan;
|
|
|
|
namespace Company.Domain.WorkshopPlanAgg
|
|
{
|
|
public interface IWorkshopPlanRepository : IRepository<long, WorkshopPlan>
|
|
{
|
|
EditWorkshopPlan GetWorkshopPlanByWorkshopId(long workshopId);
|
|
}
|
|
}
|