namespace Yw.BLL
{
///
///
///
public class BimfaceFileRelationStd : Yw.CAL.IBimfaceFileRelationStd
{
private readonly Yw.CAL.IBimfaceFileRelationStd _cal = CALCreateHelper.CreateCAL();
public Task> GetByObjectTypeAndObjectID(string ObjectType, long ObjectID)
{
return _cal.GetByObjectTypeAndObjectID(ObjectType, ObjectID);
}
public Task> GetByObjectTypeAndObjectIDOfPurpose(string ObjectType, long ObjectID, string Purpose)
{
return _cal.GetByObjectTypeAndObjectIDOfPurpose(ObjectType, ObjectID, Purpose);
}
}
}