コード例 #1
0
ファイル: PartType.cs プロジェクト: ewin66/SCOUT_NS
 internal static PartType GetType(IUnitOfWork uow, int value)
 {
     return(PartRepository.GetType(uow, value));
 }
コード例 #2
0
ファイル: PartType.cs プロジェクト: ewin66/SCOUT_NS
 public static ICollection <PartType> GetPartTypes(IUnitOfWork uow)
 {
     return(PartRepository.GetPartTypes(uow));
 }
コード例 #3
0
ファイル: Part.cs プロジェクト: ewin66/SCOUT_NS
 public static Part GetPartByPartNumber(IUnitOfWork uow, string partNo)
 {
     return(PartRepository.GetPartByPartNumber(uow, partNo));
 }
コード例 #4
0
ファイル: Part.cs プロジェクト: ewin66/SCOUT_NS
 public static Part GetPart(int id)
 {
     return(PartRepository.GetPartById(Scout.Core.Data.GetUnitOfWork(), id));
 }
コード例 #5
0
ファイル: Part.cs プロジェクト: ewin66/SCOUT_NS
 public static Part GetPart(IUnitOfWork uow, int id)
 {
     return(PartRepository.GetPartById(uow, id));
 }
コード例 #6
0
 public ICollection <ServiceCode> ServiceCodesByModel(PartModel model)
 {
     return(PartRepository.GetFailCodesByModel(this, model));
 }
コード例 #7
0
 public static PartIdentType GetIdentType(IUnitOfWork uow, int value)
 {
     return(PartRepository.GetIdentType(uow, value));
 }