internal static PartType GetType(IUnitOfWork uow, int value) { return(PartRepository.GetType(uow, value)); }
public static ICollection <PartType> GetPartTypes(IUnitOfWork uow) { return(PartRepository.GetPartTypes(uow)); }
public static Part GetPartByPartNumber(IUnitOfWork uow, string partNo) { return(PartRepository.GetPartByPartNumber(uow, partNo)); }
public static Part GetPart(int id) { return(PartRepository.GetPartById(Scout.Core.Data.GetUnitOfWork(), id)); }
public static Part GetPart(IUnitOfWork uow, int id) { return(PartRepository.GetPartById(uow, id)); }
public ICollection <ServiceCode> ServiceCodesByModel(PartModel model) { return(PartRepository.GetFailCodesByModel(this, model)); }
public static PartIdentType GetIdentType(IUnitOfWork uow, int value) { return(PartRepository.GetIdentType(uow, value)); }