Ejemplo n.º 1
0
 internal static PartType GetType(IUnitOfWork uow, int value)
 {
     return(PartRepository.GetType(uow, value));
 }
Ejemplo n.º 2
0
 public static ICollection <PartType> GetPartTypes(IUnitOfWork uow)
 {
     return(PartRepository.GetPartTypes(uow));
 }
Ejemplo n.º 3
0
 public static Part GetPartByPartNumber(IUnitOfWork uow, string partNo)
 {
     return(PartRepository.GetPartByPartNumber(uow, partNo));
 }
Ejemplo n.º 4
0
 public static Part GetPart(int id)
 {
     return(PartRepository.GetPartById(Scout.Core.Data.GetUnitOfWork(), id));
 }
Ejemplo n.º 5
0
 public static Part GetPart(IUnitOfWork uow, int id)
 {
     return(PartRepository.GetPartById(uow, id));
 }
Ejemplo n.º 6
0
 public ICollection <ServiceCode> ServiceCodesByModel(PartModel model)
 {
     return(PartRepository.GetFailCodesByModel(this, model));
 }
Ejemplo n.º 7
0
 public static PartIdentType GetIdentType(IUnitOfWork uow, int value)
 {
     return(PartRepository.GetIdentType(uow, value));
 }