public bool Add(UserProduct userProduct) { var userId = _uSERRepository.FindBy(userProduct.UserId); if (userProduct == null) { return(false); } return(_userProductRepository.Add(userProduct) > 0); }
public USERP GetBy(int id) { return(_uSERRepository.FindBy(id)); }