AgGateway.ADAPT.ISOv4Plugin.Loaders.TaskLoader.LoadCustomer C# (CSharp) 메소드

LoadCustomer() 개인적인 메소드

private LoadCustomer ( string customerId, AgGateway.ADAPT.ApplicationDataModel.LoggedData.LoggedData task ) : void
customerId string
task AgGateway.ADAPT.ApplicationDataModel.LoggedData.LoggedData
리턴 void
        private void LoadCustomer(string customerId, LoggedData task)
        {
            var customer = _taskDocument.Customers.FindById(customerId);
            if (customer != null)
                task.GrowerId = customer.Id.ReferenceId;
        }